We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de1102 commit 8559b15Copy full SHA for 8559b15
.github/workflows/windows-build.yml
@@ -59,9 +59,10 @@ jobs:
59
if: steps.cache-boost-deps.outputs.cache-hit != 'true'
60
run: |
61
$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"
63
$ProgressPreference = 'SilentlyContinue'
64
Write-Host "Downloading Boost from $boost_url"
- 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
66
7z x boost_${boost_version_str}.zip
67
68
# Print out the directory content to verify
0 commit comments