Skip to content

Commit 971c15e

Browse files
committed
Work around Rust distribution breakage
My monthly Travis build failed without any changes on my part. I did pin Rust versions, but I also test on "nightly", "beta", and "stable", which are mutable. "Beta" today is not the same as "beta" one month ago, so other people can still break my build. Rustup is provided by Travis so I cannot pin Rustup either. Travis might have updated it to a broken version, or the Rust project might have broken their hosting of the beta channel for OS X upstream. I am not sure what the underlying issue is, but from skimming the comments it looks like it will sort itself out. In the mean time, disable testing on beta on OS X. Related issues: rust-lang/rustup#1539 rust-lang/rust#55817
1 parent 7a32134 commit 971c15e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ matrix:
2626
- os: osx
2727
rust: stable
2828

29-
- os: osx
30-
rust: beta
29+
# TODO: Restore when https://github.com/rust-lang/rust/issues/55817 is fixed.
30+
# - os: osx
31+
# rust: beta
3132

3233
- os: osx
3334
rust: nightly

0 commit comments

Comments
 (0)