Skip to content

Commit 2de1102

Browse files
fix: verify boost url and print content in the directory
1 parent fb1c702 commit 2de1102

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/windows-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,13 @@ jobs:
6060
run: |
6161
$boost_version_str = ${Env:BOOST_VERSION}.Replace(".","_")
6262
$ProgressPreference = 'SilentlyContinue'
63+
Write-Host "Downloading Boost from $boost_url"
6364
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
6465
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
6570
cd boost_${boost_version_str}
6671
cmd /C bootstrap
6772
./b2.exe --build-type=complete toolset=msvc --with-regex --with-program_options --with-system --with-test

0 commit comments

Comments
 (0)