diff options
author | Alex Crichton <alex@alexcrichton.com> | 2016-02-18 09:41:08 -0800 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2016-02-18 13:53:46 -0800 |
commit | 28a493a8cfeb12301183c6450a9a4ebd5cfcb507 (patch) | |
tree | 5b49d73cf46ad91c45272d6e22dd87fef27c97bd | |
parent | 16f1c190afbc7605ed50a40f802189e436de68f6 (diff) | |
download | rust-libc-28a493a8cfeb12301183c6450a9a4ebd5cfcb507.tar.gz |
Move iOS back to a known good date
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | ci/run-travis.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d6d3ab581d..dcf4c7d3df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,10 +45,10 @@ matrix: rust: nightly - os: osx env: TARGET=i386-apple-ios - rust: nightly + rust: nightly-2016-02-12 - os: osx env: TARGET=x86_64-apple-ios - rust: nightly + rust: nightly-2016-02-12 - os: linux env: TARGET=x86_64-rumprun-netbsd DOCKER=alexcrichton/rust-libc-rumprun:2015-11-27 rust: nightly-2015-09-27 diff --git a/ci/run-travis.sh b/ci/run-travis.sh index e6d6c81562..e4fdcff563 100644 --- a/ci/run-travis.sh +++ b/ci/run-travis.sh @@ -20,6 +20,10 @@ fi MAIN_TARGETS=https://static.rust-lang.org/dist DATE=$(echo $TRAVIS_RUST_VERSION | sed s/nightly-//) EXTRA_TARGETS=https://people.mozilla.org/~acrichton/libc-test/$DATE +if [ "$DATE" != "nightly" ]; then + MAIN_TARGETS=$MAIN_TARGETS/$DATE + TRAVIS_RUST_VERSION=nightly +fi install() { if [ "$TRAVIS" = "true" ]; then |