Use iOS nightlies instead of a pinned version

This commit is contained in:
Alex Crichton 2016-02-01 11:43:49 -08:00
parent 579f2c9836
commit 36ae2359b3
2 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ matrix:
rust: nightly
- os: osx
env: TARGET=i386-apple-ios
rust: nightly-2015-09-08
rust: nightly
- os: osx
env: TARGET=x86_64-apple-ios
rust: nightly-2015-09-08
rust: nightly
- os: linux
env: TARGET=x86_64-rumprun-netbsd DOCKER=alexcrichton/rust-libc-rumprun:2015-11-27
rust: nightly-2015-09-27

View File

@ -108,7 +108,7 @@ cp ci/cargo-config .cargo/config
# all others from the official distribution.
if [ "$TRAVIS" = "true" ]; then
case "$TARGET" in
*-apple-ios | *-rumprun-*)
*-rumprun-*)
curl -s $EXTRA_TARGETS/$TARGET.tar.gz | \
tar xzf - -C `rustc --print sysroot`/lib/rustlib
;;