2015-10-28 20:11:37 +00:00
|
|
|
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"
|
|
|
|
}
|
2016-03-16 13:58:17 +00:00
|
|
|
- ps: >-
|
|
|
|
If ($env:Configuration -Match "shared") {
|
|
|
|
$env:SHARED="shared"
|
|
|
|
} Else {
|
|
|
|
$env:SHARED=""
|
|
|
|
}
|
2015-10-28 20:11:37 +00:00
|
|
|
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
|
|
|
|
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
|
2016-03-16 13:58:17 +00:00
|
|
|
- perl Configure %TARGET% no-asm %SHARED%
|
2015-10-28 20:11:37 +00:00
|
|
|
|
|
|
|
build_script:
|
2016-03-07 18:18:42 +00:00
|
|
|
- nmake
|
2015-10-28 20:11:37 +00:00
|
|
|
|
|
|
|
test_script:
|
2016-03-07 18:18:42 +00:00
|
|
|
- nmake test
|
2015-10-28 20:11:37 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
to:
|
|
|
|
- openssl-commits@openssl.org
|
|
|
|
on_build_success: false
|
|
|
|
on_build_failure: true
|
|
|
|
on_build_status_changed: true
|