diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-05 09:56:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-05 09:56:19 -0400 |
commit | b79a4483577c720efc165f9758a1c37d7af94ab4 (patch) | |
tree | 2db0e58af16ba0b2100cd2ae1f97a5329fba9fd8 | |
parent | bd1302a37fea363ab6e85054604830b4cf00d4cf (diff) | |
parent | 2b1b8bf2cad4af304d38f88e38047dadddd7e0be (diff) | |
download | tor-b79a4483577c720efc165f9758a1c37d7af94ab4.tar.gz tor-b79a4483577c720efc165f9758a1c37d7af94ab4.zip |
Merge branch 'maint-0.3.2' into release-0.3.2
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | changes/bug27453 | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 1b43c721a3..a64b5e61f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -179,11 +179,11 @@ script: after_failure: ## configure will leave a log file with more details of config failures. ## But the log is too long for travis' rendered view, so tail it. - - tail -1000 config.log + - tail -1000 config.log || echo "tail failed" ## `make check` will leave a log file with more details of test failures. - - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log; fi + - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi ## `make distcheck` puts it somewhere different. - - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog; fi + - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi after_success: ## If this build was one that produced coverage, upload it. diff --git a/changes/bug27453 b/changes/bug27453 new file mode 100644 index 0000000000..4501346d2c --- /dev/null +++ b/changes/bug27453 @@ -0,0 +1,3 @@ + o Minor bugfixes (continuous integration): + - When a Travis build fails, and showing a log fails, keep trying to + show the other logs. Fixes bug 27453; bugfix on 0.3.4.7-rc. |