0c1167fd61
Reviewed-by: Rich Salz <rsalz@openssl.org>
38 lines
793 B
YAML
38 lines
793 B
YAML
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: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
|
|
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
|
|
- perl Configure %TARGET% no-asm
|
|
|
|
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
|