diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-19 05:42:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-19 05:42:43 -0400 |
commit | bc0de600b2033c6fb109d70ff3cbd8b8dc2ad271 (patch) | |
tree | 12c2b96be5cf9db6506b4a0e22a28f25a3f553a6 /.travis.yml | |
parent | a0cc7e9492ca3737d197d5b7ec491f6f00bc9fb5 (diff) | |
parent | 1aa0ae2cc3547a35a44967ed56c1f78a42c076f8 (diff) | |
download | tor-bc0de600b2033c6fb109d70ff3cbd8b8dc2ad271.tar.gz tor-bc0de600b2033c6fb109d70ff3cbd8b8dc2ad271.zip |
Merge branch 'maint-0.3.1' into maint-0.3.2
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 19bbe6df01..d6450d270b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,10 +69,26 @@ env: # - RUST_OPTIONS="" matrix: - ## If one build in the matrix fails (e.g. if building withour Rust and Clang - ## fails, but building with Rust and GCC is still going), then cancel the - ## entire job early and call the whole thing a failure. - fast_finish: true + ## Uncomment to allow the build to report success (with non-required + ## sub-builds continuing to run) if all required sub-builds have + ## succeeded. This is somewhat buggy currently: it can cause + ## duplicate notifications and prematurely report success if a + ## single sub-build has succeeded. See + ## https://github.com/travis-ci/travis-ci/issues/1696 + # fast_finish: true + + ## Uncomment the appropriate lines below to allow the build to + ## report success even if some less-critical sub-builds fail and it + ## seems likely to take a while for someone to fix it. Currently + ## Travis CI doesn't distinguish "all builds succeeded" from "some + ## non-required sub-builds failed" except on the individual build's + ## page, which makes it somewhat annoying to detect from the + ## branches and build history pages. See + ## https://github.com/travis-ci/travis-ci/issues/8716 + allow_failures: + # - env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true + # - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode + # - compiler: clang ## Create explicit matrix entries to work around a Travis CI ## environment issue. Missing keys inherit from the first list |