Further style changes to curve448 code
[openssl.git] / appveyor.yml
index a5d05c6bdcdbb7174ef1de51157229885a468971..b3165d59d698943ccca4473639f90ba03b4a3660 100644 (file)
@@ -31,6 +31,7 @@ before_build:
     - mkdir _build
     - cd _build
     - perl ..\Configure %TARGET% %SHARED%
+    - perl configdata.pm --dump
     - cd ..
     - ps: >-
         if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER`
@@ -39,31 +40,26 @@ before_build:
         }
 
 build_script:
+    - cd _build
     - ps: >-
         If ($env:Configuration -Match "shared" -or $env:EXTENDED_TESTS) {
-            cd _build
             cmd /c "nmake 2>&1"
-            cd ..
         }
+    - cd ..
 
 test_script:
+    - cd _build
     - ps: >-
         If ($env:Configuration -Match "shared" -or $env:EXTENDED_TESTS) {
-            cd _build
             if ($env:EXTENDED_TESTS) {
                 cmd /c "nmake test V=1 2>&1"
-                mkdir ..\_install
-                cmd /c "nmake install install_docs DESTDIR=..\_install 2>&1"
             } Else {
                 cmd /c "nmake test V=1 TESTS=-test_fuzz 2>&1"
             }
-            cd ..
         }
-
-notifications:
-    - provider: Email
-      to:
-          - openssl-commits@openssl.org
-      on_build_success: false
-      on_build_failure: true
-      on_build_status_changed: true
+    - ps: >-
+        if ($env:EXTENDED_TESTS) {
+            mkdir ..\_install
+            cmd /c "nmake install install_docs DESTDIR=..\_install 2>&1"
+        }
+    - cd ..