File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 59
59
if : steps.cache-boost-deps.outputs.cache-hit != 'true'
60
60
run : |
61
61
$boost_version_str = ${Env:BOOST_VERSION}.Replace(".","_")
62
+ $boost_url = "https://archives.boost.io/release/${Env:BOOST_VERSION}/source/boost_${boost_version_str}.zip"
62
63
$ProgressPreference = 'SilentlyContinue'
63
- 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
64
+ Write-Host "Downloading Boost from $boost_url"
65
+ Invoke-WebRequest -Uri $boost_url -OutFile boost_${boost_version_str}.zip
64
66
7z x boost_${boost_version_str}.zip
67
+ Write-Host "Unzipped directory content:"
68
+ Get-ChildItem -Directory
65
69
cd boost_${boost_version_str}
66
70
cmd /C bootstrap
67
71
./b2.exe --build-type=complete toolset=msvc --with-regex --with-program_options --with-system --with-test
You can’t perform that action at this time.
0 commit comments