Skip to content

Commit

Permalink
Merge pull request #6577 from STEllAR-GROUP/boost_download
Browse files Browse the repository at this point in the history
Download Boost from their own archives, not from Sourceforge
  • Loading branch information
hkaiser authored Nov 25, 2024
2 parents d46939e + fde3d47 commit 4fcea07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/macos_debug_fetch_hwloc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
run: |
brew install --overwrite python-tk && \
brew install --overwrite boost gperftools ninja autoconf automake && \
autoreconf -f -i \
brew upgrade cmake
- name: Configure
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_release_gcc_mingw.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4fcea07

Please sign in to comment.