Skip to content

Commit 2d0baa7

Browse files
committed
Auto merge of #39102 - alexcrichton:netbsd-mirror, r=alexcrichton
travis: Mirror some NetBSD artifacts This mirrors a few artifacts that have been flaky to download recently on our own S3 bucket, which has historically been more reliable. Closes #39097
2 parents 47410b2 + 00d51ee commit 2d0baa7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/ci/docker/dist-s390x-linux-netbsd/build-toolchain.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ rm -rf binutils
3131

3232
# Next, download the NetBSD libc and relevant header files
3333
mkdir netbsd
34-
curl https://ftp.netbsd.org/pub/NetBSD/NetBSD-7.0/amd64/binary/sets/base.tgz | \
34+
# originally from:
35+
# https://ftp.netbsd.org/pub/NetBSD/NetBSD-7.0/amd64/binary/sets/base.tgz
36+
curl https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-01-16-netbsd-base.tgz | \
3537
tar xzf - -C netbsd ./usr/include ./usr/lib ./lib
36-
curl https://ftp.netbsd.org/pub/NetBSD/NetBSD-7.0/amd64/binary/sets/comp.tgz | \
38+
# originally from:
39+
# https://ftp.netbsd.org/pub/NetBSD/NetBSD-7.0/amd64/binary/sets/comp.tgz
40+
curl https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-01-16-netbsd-comp.tgz | \
3741
tar xzf - -C netbsd ./usr/include ./usr/lib
3842

3943
dst=/usr/local/x86_64-unknown-netbsd

0 commit comments

Comments
 (0)