aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-03-05 23:37:29 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-03-05 23:37:29 -0500
commit6b069f5c8c0f23099287ba340ddf8490c6cdc94d (patch)
treea1850abd37ae14de1f478db5d08d22d824aaecd8 /ci
parentd31b65e762fbf59d29780d4cbf7be1ab824a67de (diff)
downloadzig-6b069f5c8c0f23099287ba340ddf8490c6cdc94d.tar.gz
zig-6b069f5c8c0f23099287ba340ddf8490c6cdc94d.zip
Revert "put FreeBSD CI in timeout for misbehavior"
This reverts commit c0c9303bd63468afe146ad729cf963ee06a1777f. Thanks to commit c08444b33ff49981cd0a39cced479e2197dc4fd7 we can now re-enable FreeBSD in the CI.
Diffstat (limited to 'ci')
-rwxr-xr-xci/srht/update_download_page15
1 files changed, 5 insertions, 10 deletions
diff --git a/ci/srht/update_download_page b/ci/srht/update_download_page
index cd289713db..1a721bec80 100755
--- a/ci/srht/update_download_page
+++ b/ci/srht/update_download_page
@@ -21,10 +21,7 @@ curl --fail -I "$AARCH64_LINUX_JSON_URL" >/dev/null || exit 0
curl --fail -I "$X86_64_LINUX_JSON_URL" >/dev/null || exit 0
curl --fail -I "$X86_64_WINDOWS_JSON_URL" >/dev/null || exit 0
curl --fail -I "$X86_64_MACOS_JSON_URL" >/dev/null || exit 0
-
-# FreeBSD is dealing with some weird upstream bug right now
-# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244549
-#curl --fail -I "$X86_64_FREEBSD_JSON_URL" >/dev/null || exit 0
+curl --fail -I "$X86_64_FREEBSD_JSON_URL" >/dev/null || exit 0
# Without --user, this gave me:
# ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied
@@ -66,12 +63,10 @@ export AARCH64_LINUX_TARBALL="$(echo "$AARCH64_LINUX_JSON" | jq .tarball -r)"
export AARCH64_LINUX_BYTESIZE="$(echo "$AARCH64_LINUX_JSON" | jq .size -r)"
export AARCH64_LINUX_SHASUM="$(echo "$AARCH64_LINUX_JSON" | jq .shasum -r)"
-# FreeBSD is dealing with some weird upstream bug right now
-# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244549
-#X86_64_FREEBSD_JSON=$(curl --fail "$X86_64_FREEBSD_JSON_URL" || exit 1)
-#export X86_64_FREEBSD_TARBALL="$(echo "$X86_64_FREEBSD_JSON" | jq .tarball -r)"
-#export X86_64_FREEBSD_BYTESIZE="$(echo "$X86_64_FREEBSD_JSON" | jq .size -r)"
-#export X86_64_FREEBSD_SHASUM="$(echo "$X86_64_FREEBSD_JSON" | jq .shasum -r)"
+X86_64_FREEBSD_JSON=$(curl --fail "$X86_64_FREEBSD_JSON_URL" || exit 1)
+export X86_64_FREEBSD_TARBALL="$(echo "$X86_64_FREEBSD_JSON" | jq .tarball -r)"
+export X86_64_FREEBSD_BYTESIZE="$(echo "$X86_64_FREEBSD_JSON" | jq .size -r)"
+export X86_64_FREEBSD_SHASUM="$(echo "$X86_64_FREEBSD_JSON" | jq .shasum -r)"
git clone https://github.com/ziglang/www.ziglang.org --depth 1
cd www.ziglang.org