Add AGL's "beer mug" PEM file as another test input
[openssl.git] / appveyor.yml
index 1184d7dddcf6d302a8c9a6fbe7898067e3a722c8..d47c6cd6d7f4997fec55750601583bc619b9b3c5 100644 (file)
@@ -14,10 +14,10 @@ before_build:
     - ps: >-
         If ($env:Platform -Match "x86") {
             $env:VCVARS_PLATFORM="x86"
-            $env:TARGET="VC-WIN32"
+            $env:TARGET="VC-WIN32 no-asm"
         } Else {
             $env:VCVARS_PLATFORM="amd64"
-            $env:TARGET="VC-WIN64A"
+            $env:TARGET="VC-WIN64A-masm"
         }
     - ps: >-
         If ($env:Configuration -Match "shared") {
@@ -29,7 +29,7 @@ before_build:
     - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
     - mkdir _build
     - cd _build
-    - perl ..\Configure %TARGET% no-asm %SHARED%
+    - perl ..\Configure %TARGET% %SHARED%
     - cd ..
 
 build_script:
@@ -40,12 +40,7 @@ build_script:
 test_script:
     - cd _build
     - nmake test V=1
-    - cd ..
-
-# Fake deploy script to test installation
-deploy_script:
-    - mkdir _install
-    - cd _build
+    - mkdir ..\_install
     - nmake install install_docs DESTDIR=..\_install
     - cd ..