Skip to content
Snippets Groups Projects
Commit 22bb4e4c authored by Alex Crichton's avatar Alex Crichton
Browse files

Merge pull request #267 from alexcrichton/rustup

Use rustup to add targets, not manual curl
parents 1e6a354c 621aa7cb
No related branches found
No related tags found
No related merge requests found
......@@ -109,9 +109,9 @@ cp ci/cargo-config .cargo/config
# Next up we need to install the standard library for the version of Rust that
# we're testing.
if [ "$TRAVIS" = "true" ]; then
curl -s $MAIN_TARGETS/rust-std-$TRAVIS_RUST_VERSION-$TARGET.tar.gz | \
tar xzf - -C $HOME/rust/lib/rustlib --strip-components=4 \
rust-std-$TRAVIS_RUST_VERSION-$TARGET/rust-std-$TARGET/lib/rustlib/$TARGET
curl https://static.rust-lang.org/rustup.sh | \
sh -s -- --add-target=$TARGET --disable-sudo -y \
--prefix=`rustc --print sysroot`
fi
# If we're testing with a docker image, then run tests entirely within that
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment