Try to fix musl CI again

This commit is contained in:
Alex Crichton 2015-09-13 22:59:06 -07:00
parent 11b5ca497a
commit 1e6056e573
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ if [ "$TARGET" = "arm-linux-androideabi" ]; then
docker pull alexcrichton/rust-libc-test
docker run -v `pwd`:/clone -t alexcrichton/rust-libc-test sh ci/run.sh $TARGET
elif [ "$TARGET" = "x86_64-unknown-linux-musl" ]; then
curl -sO https://people.mozilla.org/~acrichton/libc-test/2015-09-08/x86_64-unknown-linux-musl.tar.gz | \
curl -s https://people.mozilla.org/~acrichton/libc-test/2015-09-08/x86_64-unknown-linux-musl.tar.gz | \
tar xzf - -C $HOME/rust/lib/rustlib
sh ci/run.sh $TARGET
else