Skip to content

Commit 4689af9

Browse files
committed
Auto merge of rust-lang#767 - alexcrichton:us-west-1, r=alexcrichton
Update s3 download locations
2 parents d5236b0 + 050d8c8 commit 4689af9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ci/docker/mips-unknown-linux-musl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN mkdir /toolchain
88

99
# Note that this originally came from:
1010
# https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2
11-
RUN curl -L https://s3.amazonaws.com/rust-lang-ci/libc/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
11+
RUN curl -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
1212
tar xjf - -C /toolchain --strip-components=1
1313

1414
ENV PATH=$PATH:/rust/bin:/toolchain/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.15/bin \

ci/docker/mipsel-unknown-linux-musl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN mkdir /toolchain
88

99
# Note that this originally came from:
1010
# 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
11-
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 | \
11+
RUN curl -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
1212
tar xjf - -C /toolchain --strip-components=2
1313

1414
ENV PATH=$PATH:/rust/bin:/toolchain/bin \

ci/docker/x86_64-unknown-freebsd/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM alexcrichton/rust-slave-linux-cross:2016-04-15
2-
USER root
1+
FROM alexcrichton/port-prebuilt-freebsd:2017-09-16
32

43
RUN apt-get update
54
RUN apt-get install -y --no-install-recommends \
65
qemu genext2fs
6+
RUN apt-get install -y curl ca-certificates gcc
77

88
ENTRYPOINT ["sh"]
99

ci/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ if [ "$QEMU" != "" ]; then
2121
# image is .gz : download and uncompress it
2222
qemufile=$(echo ${QEMU%.gz} | sed 's/\//__/g')
2323
if [ ! -f $tmpdir/$qemufile ]; then
24-
curl https://s3.amazonaws.com/rust-lang-ci/libc/$QEMU | \
24+
curl https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/$QEMU | \
2525
gunzip -d > $tmpdir/$qemufile
2626
fi
2727
else
2828
# plain qcow2 image: just download it
2929
qemufile=$(echo ${QEMU} | sed 's/\//__/g')
3030
if [ ! -f $tmpdir/$qemufile ]; then
31-
curl https://s3.amazonaws.com/rust-lang-ci/libc/$QEMU \
31+
curl https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/$QEMU \
3232
> $tmpdir/$qemufile
3333
fi
3434
fi

0 commit comments

Comments
 (0)