mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-15 10:59:39 +00:00
Notifications can be (and should be) configured on account basis on the CI web site. This avoids getting emails to openssl-commits for personal accounts that also build OpenSSL stuff. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3484) (cherry picked from commit 7a94f5b0f7c878b1056a08f659ce23aa97bfa3ad)
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
platform:
|
|
- x86
|
|
- x64
|
|
|
|
environment:
|
|
matrix:
|
|
- VSVER: 9
|
|
- VSVER: 10
|
|
- VSVER: 11
|
|
- VSVER: 12
|
|
- VSVER: 14
|
|
|
|
configuration:
|
|
- plain
|
|
- shared
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- platform: x64
|
|
VSVER: 9
|
|
- platform: x64
|
|
VSVER: 10
|
|
- platform: x64
|
|
VSVER: 11
|
|
|
|
before_build:
|
|
- ps: >-
|
|
If ($env:Platform -Match "x86") {
|
|
$env:VCVARS_PLATFORM="x86"
|
|
$env:TARGET="VC-WIN32"
|
|
$env:DO="do_ms"
|
|
} Else {
|
|
$env:VCVARS_PLATFORM="amd64"
|
|
$env:TARGET="VC-WIN64A"
|
|
$env:DO="do_win64a"
|
|
}
|
|
- ps: >-
|
|
If ($env:Configuration -Like "*shared*") {
|
|
$env:MAK="ntdll.mak"
|
|
} Else {
|
|
$env:MAK="nt.mak"
|
|
}
|
|
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
|
|
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
|
|
- perl Configure %TARGET% no-asm
|
|
- call ms\%DO%
|
|
|
|
build_script:
|
|
- nmake /f ms\%MAK%
|
|
|
|
test_script:
|
|
- nmake /f ms\%MAK% test
|