tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a9820f072bf1bd796651e9e3913988e6224bd524
parent 0489288aa2ec62c84f612f80bb56883244af380d
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue, 20 Nov 2018 13:10:38 -0500

Merge branch 'maint-0.3.4' into maint-0.3.5

Diffstat:
M.appveyor.yml | 4+++-
Achanges/ticket28459 | 4++++
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/.appveyor.yml b/.appveyor.yml @@ -76,7 +76,7 @@ test_script: Execute-Bash "VERBOSE=1 make -j2 check" } -on_failure: +on_finish: - ps: >- if ($env:compiler -eq "mingw") { <# use the MSYS2 user binaries to archive failures #> @@ -91,5 +91,7 @@ on_failure: Execute-Bash "tail -1000 config.log || true" Execute-Bash "cat test-suite.log || true" } + # notify the IRC channel of any failures +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 @@ -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.