Skip to content

Commit

Permalink
Update windows.yml
Browse files Browse the repository at this point in the history
boost
  • Loading branch information
ColinRitman authored Jan 4, 2025
1 parent 95cc05a commit 6ee659b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ jobs:
uses: microsoft/setup-msbuild@v1.0.2

- name: Install Boost
shell: powershell
shell: cmd
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"
(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}"
choco install wget --no-progress
wget -nv -O boost-installer.exe "https://sourceforge.net/projects/boost/files/boost-binaries/1.72.0/boost_1_72_0-msvc-14.2-64.exe/download"
boost-installer.exe /dir=%BOOST_ROOT% /sp- /verysilent /suppressmsgboxes /norestart
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
Expand Down

0 comments on commit 6ee659b

Please sign in to comment.