From e3174496c6f507c91249e2f96db47dc7d8cc9ecc Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Tue, 19 Nov 2024 15:11:07 -0600 Subject: [PATCH] Download Boost from their own archives, not from Sourceforge --- .github/workflows/windows_release_gcc_mingw.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows_release_gcc_mingw.yml b/.github/workflows/windows_release_gcc_mingw.yml index 97bb5685f0c3..b36c02773eda 100644 --- a/.github/workflows/windows_release_gcc_mingw.yml +++ b/.github/workflows/windows_release_gcc_mingw.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2023 The STE||AR-Group +# Copyright (c) 2023-2024 The STE||AR-Group # # SPDX-License-Identifier: BSL-1.0 # Distributed under the Boost Software License, Version 1.0. (See accompanying @@ -22,7 +22,7 @@ jobs: choco install ninja -y md C:\projects $client = new-object System.Net.WebClient - $client.DownloadFile("https://master.dl.sourceforge.net/project/boost/boost/1.78.0/boost_1_78_0.7z","C:\projects\boost_1_78_0.7z") + $client.DownloadFile("https://archives.boost.io/release/1.78.0/source/boost_1_78_0.7z","C:\projects\boost_1_78_0.7z") 7z x C:\projects\boost_1_78_0.7z -y -oC:\projects\boost cd C:\projects\boost\boost_1_78_0 .\bootstrap.bat gcc