Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed May 11, 2022
1 parent d5b1ce7 commit bc37207
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ jobs:
run: |
$BOOST_ARCHIVE = "boost_$($env:BOOST_VERSION.replace('.', '_')).7z"
$url = "https://boostorg.jfrog.io/artifactory/main/release/$env:BOOST_VERSION/source/$BOOST_ARCHIVE"
(New-Object System.Net.WebClient).DownloadFile($url, $env:TEMP\boost.7z)
7z x $env:TEMP\boost.7z -y -o$env:BOOST_ROOT
mv boost_$($env:BOOST_VERSION.replace('.', '_')) $env:BOOST_ROOT
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP/boost.7z")
7z x "$env:TEMP/boost.7z" -o"$env:TEMP"
ls $env:TEMP
mv "$env:TEMP/boost_$($env:BOOST_VERSION.replace('.', '_'))" "$env:BOOST_ROOT"
- name: vcpkg install dependencies
run: |
vcpkg install catch2 fmt vc tinyobjloader
Expand Down

0 comments on commit bc37207

Please sign in to comment.