From 99a4ff1cd021670ce39d2bed44494b1ae0fbde59 Mon Sep 17 00:00:00 2001 From: cnorman Date: Thu, 2 Mar 2023 13:30:00 -0600 Subject: [PATCH] update build_container_ubuntu for ppc64le The builds moved from Unicamp to OSU, so use the new URL to get newer versions of bazel. Signed-off-by: cnorman --- build_container/build_container_ubuntu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_container/build_container_ubuntu.sh b/build_container/build_container_ubuntu.sh index dd3f47ab..beef717a 100755 --- a/build_container/build_container_ubuntu.sh +++ b/build_container/build_container_ubuntu.sh @@ -110,9 +110,9 @@ CLANG_TOOLS_SHA256SUM="f49de4b4502a6608425338e2d93bbe4529cac0a22f2dc1c119ef175a4 # Bazel and related dependencies. case $ARCH in 'ppc64le' ) - BAZEL_LATEST="$(curl https://oplab9.parqtec.unicamp.br/pub/ppc64el/bazel/ubuntu_16.04/latest/ 2>&1 \ + BAZEL_LATEST="$(curl https://ftp2.osuosl.org/pub/ppc64el/bazel/ubuntu_16.04/latest/ 2>&1 \ | sed -n 's/.*href="\([^"]*\).*/\1/p' | grep '^bazel' | head -n 1)" - curl -fSL https://oplab9.parqtec.unicamp.br/pub/ppc64el/bazel/ubuntu_16.04/latest/${BAZEL_LATEST} \ + curl -fSL https://ftp2.osuosl.org/pub/ppc64el/bazel/ubuntu_16.04/latest/${BAZEL_LATEST} \ -o /usr/local/bin/bazel chmod +x /usr/local/bin/bazel ;;