]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Appveyor: always show the logs, and upload them as build artifacts
authorteor <teor@torproject.org>
Thu, 15 Nov 2018 11:04:17 +0000 (21:04 +1000)
committerteor <teor@torproject.org>
Thu, 15 Nov 2018 11:04:17 +0000 (21:04 +1000)
Always show the configure and test logs, and upload them as build
artifacts, when building for Windows using Appveyor CI.

Implements 28459.

.appveyor.yml
changes/ticket28459 [new file with mode: 0644]

index 7d8927ee353403ddb8909cf07d8e3fcf15a151fd..21ae277671305ec92009aa2427c11e935f330bd3 100644 (file)
@@ -60,7 +60,7 @@ test_script:
             Execute-Bash "VERBOSE=1 make -j2 check"
     }
 
-on_failure:
+on_finish:
 - ps: >-
     if ($env:compiler -eq "mingw") {
             $oldpath = ${env:Path} -split ';'
@@ -73,4 +73,6 @@ on_failure:
             Execute-Bash "tail -1000 config.log || true"
             Execute-Bash "cat test-suite.log || true"
     }
+
+on_failure:
 - cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci failure
diff --git a/changes/ticket28459 b/changes/ticket28459
new file mode 100644 (file)
index 0000000..6b5839b
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor features (continuous integration, Windows):
+    - Always show the configure and test logs, and upload them as build
+      artifacts, when building for Windows using Appveyor CI.
+      Implements 28459.