fix some typos
[openssl.git] / appveyor.yml
index a5d05c6bdcdbb7174ef1de51157229885a468971..75b1ccffbe78fca31b13c321b6f52f8666f8e7a3 100644 (file)
@@ -39,31 +39,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 ..