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 fb1c702 commit 2de1102Copy full SHA for 2de1102
.github/workflows/windows-build.yml
@@ -60,8 +60,13 @@ jobs:
60
run: |
61
$boost_version_str = ${Env:BOOST_VERSION}.Replace(".","_")
62
$ProgressPreference = 'SilentlyContinue'
63
+ 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
7z x boost_${boost_version_str}.zip
66
+
67
+ # Print out the directory content to verify
68
+ Write-Host "Unzipped directory content:"
69
+ Get-ChildItem -Directory
70
cd boost_${boost_version_str}
71
cmd /C bootstrap
72
./b2.exe --build-type=complete toolset=msvc --with-regex --with-program_options --with-system --with-test
0 commit comments