From 9605a16f83884ac7647a6b754abff2ed366922d0 Mon Sep 17 00:00:00 2001 From: Zhang Lei Date: Thu, 2 Jan 2025 17:28:37 +0800 Subject: [PATCH] fix(interactive): Download boost source files from archives.boost.io (#4400) Download boost source files from archives.boost.io rather than unavailable jfrog. CI failure: https://github.com/alibaba/GraphScope/actions/runs/12578855110/job/35058156761 Related Issue: https://github.com/boostorg/boost/issues/997 --- python/graphscope/gsctl/scripts/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/graphscope/gsctl/scripts/install_deps.sh b/python/graphscope/gsctl/scripts/install_deps.sh index dd351f2e019f..af1114f75f0c 100755 --- a/python/graphscope/gsctl/scripts/install_deps.sh +++ b/python/graphscope/gsctl/scripts/install_deps.sh @@ -293,7 +293,7 @@ install_boost() { pushd "${tempdir}" || exit directory="boost_1_75_0" file="${directory}.tar.gz" - url="https://boostorg.jfrog.io/artifactory/main/release/1.75.0/source" + url="https://archives.boost.io/release/1.75.0/source" url=$(set_to_cn_url ${url}) download_and_untar "${url}" "${file}" "${directory}" pushd ${directory} || exit