You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
955 B
45 lines
955 B
platform:
|
|
- x86
|
|
- x64
|
|
|
|
environment:
|
|
matrix:
|
|
- VSVER: 14
|
|
|
|
configuration:
|
|
- plain
|
|
- shared
|
|
|
|
before_build:
|
|
- ps: >-
|
|
If ($env:Platform -Match "x86") {
|
|
$env:VCVARS_PLATFORM="x86"
|
|
$env:TARGET="VC-WIN32"
|
|
} Else {
|
|
$env:VCVARS_PLATFORM="amd64"
|
|
$env:TARGET="VC-WIN64A"
|
|
}
|
|
- ps: >-
|
|
If ($env:Configuration -Match "shared") {
|
|
$env:SHARED=""
|
|
} Else {
|
|
$env:SHARED="no-shared"
|
|
}
|
|
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
|
|
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
|
|
- perl Configure %TARGET% no-asm %SHARED%
|
|
|
|
build_script:
|
|
- nmake
|
|
|
|
test_script:
|
|
- nmake test
|
|
|
|
notifications:
|
|
- provider: Email
|
|
to:
|
|
- openssl-commits@openssl.org
|
|
on_build_success: false
|
|
on_build_failure: true
|
|
on_build_status_changed: true
|