Skip to content

Commit fcc8b8c

Browse files
committed
ci: Update FreeBSD tarball downloads
These appear to have disappeared from the original server, so I acquired the contents from a different mirror and uploaded them to our S3 bucket
1 parent 52980d0 commit fcc8b8c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ci/docker/scripts/freebsd-toolchain.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
2+
# ignore-tidy-linelength
3+
24
set -eux
35

46
arch=$1
@@ -55,7 +57,9 @@ for lib in c++ c_nonshared compiler_rt execinfo gcc pthread rt ssp_nonshared; do
5557
files_to_extract=("${files_to_extract[@]}" "./usr/lib/lib${lib}.*")
5658
done
5759

58-
URL=https://download.freebsd.org/ftp/releases/${freebsd_arch}/${freebsd_version}-RELEASE/base.txz
60+
# Originally downloaded from:
61+
# https://download.freebsd.org/ftp/releases/${freebsd_arch}/${freebsd_version}-RELEASE/base.txz
62+
URL=https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2019-04-04-freebsd-${freebsd_arch}-${freebsd_version}-RELEASE-base.txz
5963
curl "$URL" | tar xJf - -C "$sysroot" --wildcards "${files_to_extract[@]}"
6064

6165
# Fix up absolute symlinks from the system image. This can be removed

0 commit comments

Comments
 (0)