diff options
| author | bors <bors@rust-lang.org> | 2019-08-15 10:04:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-08-15 10:04:56 +0000 |
| commit | 33ec66a96f83c67fb7a0de412d88ec39553599e5 (patch) | |
| tree | a6428080a55b6606eed686e7c04bc95d4bfe19d2 | |
| parent | 34457fbd8b0980e0d41e34372cb99f86490d07f7 (diff) | |
| parent | 911c3de9093b0d8e2ca2ab66b5f56c5823db680d (diff) | |
| download | rust-33ec66a96f83c67fb7a0de412d88ec39553599e5.tar.gz rust-33ec66a96f83c67fb7a0de412d88ec39553599e5.zip | |
Auto merge of #4389 - flip1995:allow_win_failures, r=phansch
Allow windows failures on travis The windows build breaks about every second travis run. Let's disable it, until we got a fix. changelog: none
| -rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 0a1bd0ea275..fb3d2ef6784 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,7 +82,10 @@ matrix: if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try) - env: INTEGRATION=chronotope/chrono if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try) -# prevent these jobs with default env vars + allow_failures: + - os: windows + env: CARGO_INCREMENTAL=0 BASE_TESTS=true OS_WINDOWS=true + # prevent these jobs with default env vars exclude: - os: linux - os: osx |
