diff options
author | Richard Levitte <levitte@openssl.org> | 2016-03-07 19:18:42 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-09 11:22:07 +0100 |
commit | 0c1167fd61cb2a5816955739a20fce095e95992e (patch) | |
tree | 9da83a384aeb70fe3d5281fa688b34bb1c97db3f /appveyor.yml | |
parent | Adapt the Windows makefile template to source generation (diff) | |
download | openssl-0c1167fd61cb2a5816955739a20fce095e95992e.tar.xz openssl-0c1167fd61cb2a5816955739a20fce095e95992e.zip |
Adapt appveyor.yml for the new unified build
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/appveyor.yml b/appveyor.yml index dda4dba3b9..6367c3ddbc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,28 +15,19 @@ before_build: 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% + - nmake test_script: - - nmake /f ms\%MAK% test + - nmake test notifications: - provider: Email |