Skip to content

Commit 8559b15

Browse files
fix: add boost_url variable
1 parent 2de1102 commit 8559b15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/windows-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,10 @@ jobs:
5959
if: steps.cache-boost-deps.outputs.cache-hit != 'true'
6060
run: |
6161
$boost_version_str = ${Env:BOOST_VERSION}.Replace(".","_")
62+
$boost_url = "https://boostorg.jfrog.io/artifactory/main/release/${Env:BOOST_VERSION}/source/boost_${boost_version_str}.zip"
6263
$ProgressPreference = 'SilentlyContinue'
6364
Write-Host "Downloading Boost from $boost_url"
64-
Invoke-WebRequest -Uri https://boostorg.jfrog.io/artifactory/main/release/${Env:BOOST_VERSION}/source/boost_${boost_version_str}.zip -OutFile boost_${boost_version_str}.zip
65+
Invoke-WebRequest -Uri $boost_url -OutFile boost_${boost_version_str}.zip
6566
7z x boost_${boost_version_str}.zip
6667
6768
# Print out the directory content to verify

0 commit comments

Comments
 (0)