Fix a gcc-8 warning -Wcast-function-type
[openssl.git] / appveyor.yml
index 46eaf3978beb1124f7372448b80f5d8ed024c186..8dd6cb6fb0af2bce1e32485f4dfb547e1616a70d 100644 (file)
@@ -27,18 +27,19 @@ before_build:
         }
     - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
     - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
-    - perl Configure %TARGET% no-asm %SHARED%
+    - mkdir _build
+    - cd _build
+    - perl ..\Configure %TARGET% no-asm %SHARED%
+    - cd ..
 
 build_script:
+    - cd _build
     - nmake
+    - cd ..
 
 test_script:
+    - cd _build
     - nmake test
-
-notifications:
-    - provider: Email
-      to:
-          - openssl-commits@openssl.org
-      on_build_success: false
-      on_build_failure: true
-      on_build_status_changed: true
+    - mkdir ..\_install
+    - nmake install install_docs DESTDIR=..\_install
+    - cd ..