Deprecate OBJ_cleanup() and make it a no-op
[openssl.git] / appveyor.yml
index dda4dba3b9ac7e41a178f73c1f0268a3a273fce1..7496a9b3f3335946f35a778d23d85c1c2c559f04 100644 (file)
@@ -15,28 +15,25 @@ 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"
+        If ($env:Configuration -Match "shared") {
+            $env:SHARED="shared"
         } Else {
-            $env:MAK="nt.mak"
+            $env: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%
+    - perl Configure %TARGET% no-asm %SHARED%
 
 build_script:
-    - nmake /f ms\%MAK%
+    - nmake
 
 test_script:
-    - nmake /f ms\%MAK% test
+    - nmake test
 
 notifications:
     - provider: Email