Skip to content

Commit cffe1f2

Browse files
committed
Update CI download location
1 parent 15950ba commit cffe1f2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ci/docker/x86_64-unknown-freebsd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ RUN apt-get install -y --no-install-recommends \
88
ENTRYPOINT ["sh"]
99

1010
ENV PATH=$PATH:/rust/bin \
11-
QEMU=freebsd.qcow2.gz \
11+
QEMU=2016-11-06/freebsd.qcow2.gz \
1212
CAN_CROSS=1 \
1313
CARGO_TARGET_X86_64_UNKNOWN_FREEBSD_LINKER=x86_64-unknown-freebsd10-gcc

ci/docker/x86_64-unknown-openbsd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ RUN apt-get install -y --no-install-recommends \
55
gcc libc6-dev qemu curl ca-certificates \
66
genext2fs
77
ENV PATH=$PATH:/rust/bin \
8-
QEMU=2016-09-07/openbsd-6.0-without-pkgs.qcow2
8+
QEMU=2016-11-06/openbsd-6.0-without-pkgs.qcow2

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://people.mozilla.org/~acrichton/libc-test/qemu/$QEMU | \
24+
curl https://s3.amazonaws.com/rust-lang-ci/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://people.mozilla.org/~acrichton/libc-test/qemu/$QEMU \
31+
curl https://s3.amazonaws.com/rust-lang-ci/libc/$QEMU \
3232
> $tmpdir/$qemufile
3333
fi
3434
fi

0 commit comments

Comments
 (0)