File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ RUN apt-get install -y --no-install-recommends \
8
8
ENTRYPOINT ["sh" ]
9
9
10
10
ENV PATH=$PATH:/rust/bin \
11
- QEMU=freebsd.qcow2.gz \
11
+ QEMU=2016-11-06/ freebsd.qcow2.gz \
12
12
CAN_CROSS=1 \
13
13
CARGO_TARGET_X86_64_UNKNOWN_FREEBSD_LINKER=x86_64-unknown-freebsd10-gcc
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ RUN apt-get install -y --no-install-recommends \
5
5
gcc libc6-dev qemu curl ca-certificates \
6
6
genext2fs
7
7
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
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ if [ "$QEMU" != "" ]; then
21
21
# image is .gz : download and uncompress it
22
22
qemufile=$( echo ${QEMU% .gz} | sed ' s/\//__/g' )
23
23
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 | \
25
25
gunzip -d > $tmpdir /$qemufile
26
26
fi
27
27
else
28
28
# plain qcow2 image: just download it
29
29
qemufile=$( echo ${QEMU} | sed ' s/\//__/g' )
30
30
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 \
32
32
> $tmpdir /$qemufile
33
33
fi
34
34
fi
You can’t perform that action at this time.
0 commit comments