From 32f57d05e8bf5555b446dfcd8addbf013b08ad81 Mon Sep 17 00:00:00 2001 From: Luigi Ballabio Date: Wed, 10 Jan 2024 08:48:50 +0100 Subject: [PATCH] Back to Artifactory for Boost downloads This reverts commit 484e48af47ed6b8cf37be5a45e0962a572940a1f. --- .github/workflows/cmake.yml | 6 +++--- .github/workflows/msvc-analysis.yml | 2 +- dockerfiles/ci.Dockerfile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 797b690d1d3..98390182b3e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -68,7 +68,7 @@ jobs: variant: sccache - name: Setup run: | - $Url = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.84.0/boost_1_84_0-msvc-14.3-64.exe" + $Url = "https://boostorg.jfrog.io/artifactory/main/release/1.84.0/binaries/boost_1_84_0-msvc-14.3-64.exe" (New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.exe") Start-Process -Wait -FilePath "$RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=C:\local\boost" choco install -y ninja @@ -102,7 +102,7 @@ jobs: variant: sccache - name: Setup run: | - $Url = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.84.0/boost_1_84_0-msvc-14.3-64.exe" + $Url = "https://boostorg.jfrog.io/artifactory/main/release/1.84.0/binaries/boost_1_84_0-msvc-14.3-64.exe" (New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.exe") Start-Process -Wait -FilePath "$RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=C:\local\boost" choco install -y ninja @@ -136,7 +136,7 @@ jobs: variant: sccache - name: Setup run: | - $Url = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.84.0/boost_1_84_0-msvc-14.3-64.exe" + $Url = "https://boostorg.jfrog.io/artifactory/main/release/1.84.0/binaries/boost_1_84_0-msvc-14.3-64.exe" (New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.exe") Start-Process -Wait -FilePath "$RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=C:\local\boost" choco install -y ninja diff --git a/.github/workflows/msvc-analysis.yml b/.github/workflows/msvc-analysis.yml index bf0a0d38a43..237d5df4277 100644 --- a/.github/workflows/msvc-analysis.yml +++ b/.github/workflows/msvc-analysis.yml @@ -20,7 +20,7 @@ jobs: - name: Setup run: | - $Url = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.84.0/boost_1_84_0-msvc-14.3-64.exe" + $Url = "https://boostorg.jfrog.io/artifactory/main/release/1.84.0/binaries/boost_1_84_0-msvc-14.3-64.exe" (New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.exe") Start-Process -Wait -FilePath "$RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=C:\local\boost" diff --git a/dockerfiles/ci.Dockerfile b/dockerfiles/ci.Dockerfile index c7537193e9f..f2438926a25 100644 --- a/dockerfiles/ci.Dockerfile +++ b/dockerfiles/ci.Dockerfile @@ -12,7 +12,7 @@ ARG boost_version ARG boost_dir ENV boost_version ${boost_version} -RUN wget https://downloads.sourceforge.net/project/boost/boost/${boost_version}/${boost_dir}.tar.gz \ +RUN wget https://boostorg.jfrog.io/artifactory/main/release/${boost_version}/source/${boost_dir}.tar.gz \ && tar xfz ${boost_dir}.tar.gz \ && rm ${boost_dir}.tar.gz \ && cd ${boost_dir} \