Skip to content

Commit

Permalink
Update Boost
Browse files Browse the repository at this point in the history
  • Loading branch information
AxVultis committed Sep 20, 2023
1 parent 442f39a commit e3b5621
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Windows
runs-on: windows-2019
env:
BOOST_ROOT: C:/local/boost_1_72_0
BOOST_ROOT: C:/local/boost_1_83_0
steps:
- uses: actions/checkout@master

Expand All @@ -32,8 +32,7 @@ jobs:
- name: Install dependencies
shell: powershell
run: |
echo "${env:BOOST_ROOT}"
$Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.72.0/boost_1_72_0-msvc-14.2-64.exe"
$Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.83.0/boost_1_83_0-msvc-14.2-64.exe"
(New-Object System.Net.WebClient).DownloadFile($Url, "$env:TEMP\boost.exe")
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=${env:BOOST_ROOT}"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Windows
runs-on: windows-2019
env:
BOOST_ROOT: C:/local/boost_1_72_0
BOOST_ROOT: C:/local/boost_1_83_0
steps:
- uses: actions/checkout@master

Expand All @@ -20,8 +20,7 @@ jobs:
- name: Install Boost
shell: powershell
run: |
echo "${env:BOOST_ROOT}"
$Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.72.0/boost_1_72_0-msvc-14.2-64.exe"
$Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.83.0/boost_1_83_0-msvc-14.2-64.exe"
(New-Object System.Net.WebClient).DownloadFile($Url, "$env:TEMP\boost.exe")
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=${env:BOOST_ROOT}"
Expand Down

0 comments on commit e3b5621

Please sign in to comment.