X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=appveyor.yml;h=d47c6cd6d7f4997fec55750601583bc619b9b3c5;hp=dda4dba3b9ac7e41a178f73c1f0268a3a273fce1;hb=52434847b10858548f32be086d2855b4beb94a78;hpb=53c6f12c1247b1e9444acd11ed85fd8afca01830 diff --git a/appveyor.yml b/appveyor.yml index dda4dba3b9..d47c6cd6d7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,29 +14,35 @@ before_build: - ps: >- If ($env:Platform -Match "x86") { $env:VCVARS_PLATFORM="x86" - $env:TARGET="VC-WIN32" - $env:DO="do_ms" + $env:TARGET="VC-WIN32 no-asm" } Else { $env:VCVARS_PLATFORM="amd64" - $env:TARGET="VC-WIN64A" - $env:DO="do_win64a" + $env:TARGET="VC-WIN64A-masm" } - ps: >- - If ($env:Configuration -Like "*shared*") { - $env:MAK="ntdll.mak" + If ($env:Configuration -Match "shared") { + $env:SHARED="" } Else { - $env:MAK="nt.mak" + $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 - - call ms\%DO% + - mkdir _build + - cd _build + - perl ..\Configure %TARGET% %SHARED% + - cd .. build_script: - - nmake /f ms\%MAK% + - cd _build + - nmake + - cd .. test_script: - - nmake /f ms\%MAK% test + - cd _build + - nmake test V=1 + - mkdir ..\_install + - nmake install install_docs DESTDIR=..\_install + - cd .. notifications: - provider: Email