summaryrefslogtreecommitdiff
path: root/ci/docker/mipsel-unknown-linux-musl/Dockerfile
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-12-02 13:33:13 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-12-02 16:22:11 -0800
commitb9430b034d78bc18ff130b8e8648fe1a1e060833 (patch)
tree04917db823c7b753327690f436707c51602f7bd3 /ci/docker/mipsel-unknown-linux-musl/Dockerfile
parentab9a0112c74cf572105e17a54c4982cd66e404f7 (diff)
downloadrust-libc-b9430b034d78bc18ff130b8e8648fe1a1e060833.tar.gz
Update both mips musl download locations
Diffstat (limited to 'ci/docker/mipsel-unknown-linux-musl/Dockerfile')
-rw-r--r--ci/docker/mipsel-unknown-linux-musl/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/docker/mipsel-unknown-linux-musl/Dockerfile b/ci/docker/mipsel-unknown-linux-musl/Dockerfile
index 36c4d90ef6..4c7ee8bcff 100644
--- a/ci/docker/mipsel-unknown-linux-musl/Dockerfile
+++ b/ci/docker/mipsel-unknown-linux-musl/Dockerfile
@@ -6,7 +6,10 @@ RUN apt-get install -y --no-install-recommends \
bzip2
RUN mkdir /toolchain
-RUN curl -L https://downloads.openwrt.org/snapshots/trunk/malta/generic/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
+
+# Note that this originally came from:
+# https://downloads.openwrt.org/snapshots/trunk/malta/generic/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2
+RUN curl -L https://s3.amazonaws.com/rust-lang-ci/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
tar xjf - -C /toolchain --strip-components=2
ENV PATH=$PATH:/rust/bin:/toolchain/bin \