diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2020-03-20 21:43:08 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2020-03-20 21:43:08 +0000 |
commit | 737493770cbfb0e6144e7c1eddebbe9160394a0f (patch) | |
tree | 041bf5f9d13b214279a3737b71d9ed65826ac7a6 /crypto/openssl/appveyor.yml | |
parent | 29b5aa1b8efcee2c420239594c8840a0e465e8dd (diff) | |
download | src-737493770cbfb0e6144e7c1eddebbe9160394a0f.tar.gz src-737493770cbfb0e6144e7c1eddebbe9160394a0f.zip |
MFC: r359060, r359061, r359066
Merge OpenSSL 1.1.1e.
Notes
Notes:
svn path=/stable/12/; revision=359186
Diffstat (limited to 'crypto/openssl/appveyor.yml')
-rw-r--r-- | crypto/openssl/appveyor.yml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/crypto/openssl/appveyor.yml b/crypto/openssl/appveyor.yml index 24966c0faa5c..242d6a9ffe6f 100644 --- a/crypto/openssl/appveyor.yml +++ b/crypto/openssl/appveyor.yml @@ -1,3 +1,6 @@ +image: + - Visual Studio 2017 + platform: - x64 - x86 @@ -5,17 +8,24 @@ platform: environment: fast_finish: true matrix: - - VSVER: 14 + - VSVER: 15 configuration: - shared - plain + - minimal before_build: - ps: >- + Install-Module VSSetup -Scope CurrentUser + - ps: >- + Get-VSSetupInstance -All + - ps: >- + gci env:* | sort-object name + - ps: >- If ($env:Platform -Match "x86") { $env:VCVARS_PLATFORM="x86" - $env:TARGET="VC-WIN32 no-asm" + $env:TARGET="VC-WIN32 no-asm --strict-warnings" } Else { $env:VCVARS_PLATFORM="amd64" $env:TARGET="VC-WIN64A-masm" @@ -23,11 +33,12 @@ before_build: - ps: >- If ($env:Configuration -Match "shared") { $env:SHARED="no-makedepend" + } ElseIf ($env:Configuration -Match "minimal") { + $env:SHARED="no-shared no-dso no-makedepend no-aria no-async no-autoload-config no-blake2 no-bf no-camellia no-cast no-chacha no-cmac no-cms no-comp no-ct no-des no-dgram no-dh no-dsa no-dtls no-ec2m no-engine no-filenames no-gost no-idea no-mdc2 no-md4 no-multiblock no-nextprotoneg no-ocsp no-ocb no-poly1305 no-psk no-rc2 no-rc4 no-rmd160 no-seed no-siphash no-sm2 no-sm3 no-sm4 no-srp no-srtp no-ssl3 no-ssl3-method no-ts no-ui-console no-whirlpool no-asm -DOPENSSL_SMALL_FOOTPRINT" } Else { $env:SHARED="no-shared no-makedepend" } - - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS")) - - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM% + - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %VCVARS_PLATFORM% - mkdir _build - cd _build - perl ..\Configure %TARGET% %SHARED% |