Skip to content

Commit 1579622

Browse files
authored
Update check.yml
boost
1 parent 6ee659b commit 1579622

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ jobs:
2020
- name: Setup msbuild
2121
uses: microsoft/setup-msbuild@v1.0.2
2222

23-
- name: Install Boost
24-
shell: powershell
23+
- name: Install Boost
24+
shell: cmd
2525
run: |
26-
echo "${env:BOOST_ROOT}"
27-
$Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.72.0/boost_1_72_0-msvc-14.2-64.exe"
28-
(New-Object System.Net.WebClient).DownloadFile($Url, "$env:TEMP\boost.exe")
29-
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=${env:BOOST_ROOT}"
26+
choco install wget --no-progress
27+
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"
28+
boost-installer.exe /dir=%BOOST_ROOT% /sp- /verysilent /suppressmsgboxes /norestart
3029
3130
- name: Install Qt
3231
uses: jurplel/install-qt-action@v4

0 commit comments

Comments
 (0)