]> git.ipfire.org Git - thirdparty/openssl.git/blame - appveyor.yml
Make "shared" builds the default
[thirdparty/openssl.git] / appveyor.yml
CommitLineData
68db80e2
AG
1platform:
2 - x86
3 - x64
4
5environment:
6 matrix:
68db80e2
AG
7 - VSVER: 14
8
9configuration:
10 - plain
11 - shared
12
68db80e2
AG
13before_build:
14 - ps: >-
15 If ($env:Platform -Match "x86") {
16 $env:VCVARS_PLATFORM="x86"
17 $env:TARGET="VC-WIN32"
68db80e2
AG
18 } Else {
19 $env:VCVARS_PLATFORM="amd64"
20 $env:TARGET="VC-WIN64A"
68db80e2 21 }
f527b6e4
RL
22 - ps: >-
23 If ($env:Configuration -Match "shared") {
24 $env:SHARED="shared"
25 } Else {
26 $env:SHARED=""
27 }
68db80e2
AG
28 - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
29 - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
f527b6e4 30 - perl Configure %TARGET% no-asm %SHARED%
68db80e2
AG
31
32build_script:
0c1167fd 33 - nmake
68db80e2
AG
34
35test_script:
0c1167fd 36 - nmake test
68db80e2
AG
37
38notifications:
39 - provider: Email
40 to:
41 - openssl-commits@openssl.org
42 on_build_success: false
43 on_build_failure: true
44 on_build_status_changed: true