authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2020-03-05 18:00:10-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-05 19:47:28-05:00
logc08444b33ff49981cd0a39cced479e2197dc4fd7
tree6455ac3ebe4e1d20e4527dd0e3de102b746a1bd2
parent01c722c21cd4f0216a722fa698d704e23707a5ba

srht: workaround FreeBSD fiasco


1 files changed, 9 insertions(+), 2 deletions(-)

ci/srht/freebsd_script+9-2
...@@ -3,8 +3,15 @@...@@ -3,8 +3,15 @@
3set -x3set -x
4set -e4set -e
55
6sudo pkg update -f6# The following line can be removed as soon as FreeBSD fixes
7yes | sudo pkg install cmake py27-s3cmd wget curl jq7# their packaging glitch. If not fixed by March 15, 2020
8# there is something wrong. Should be fixed much sooner.
9# note: this will cause some complaints when running
10# pkg commands but let's ignore them.
11sudo rm /usr/local/etc/pkg/repos/FreeBSD.conf
12
13sudo pkg update -fq
14sudo pkg install -y cmake py27-s3cmd wget curl jq
815
9ZIGDIR="$(pwd)"16ZIGDIR="$(pwd)"
10CACHE_BASENAME="llvm+clang-9.0.0-freebsd-x86_64-release"17CACHE_BASENAME="llvm+clang-9.0.0-freebsd-x86_64-release"