Skip to content

Commit

Permalink
Update windows-build.yml
Browse files Browse the repository at this point in the history
update zlib download url
  • Loading branch information
han16nah authored Aug 23, 2023
1 parent feb4573 commit 7549cd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ jobs:
id: downloadzlib
name: Download zlib
with:
url: "https://www.zlib.net/zlib1213.zip"
target: lib/boost/zlib1213.zip
url: "https://github.com/madler/zlib/releases/download/v1.3/zlib13.zip"
target: lib/boost/zlib13.zip

- name: Extract zlib
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
7z x lib/boost/zlib1213.zip -olib/boost
7z x lib/boost/zlib13.zip -olib/boost
- name: Build Boost
if: steps.cache-boost.outputs.cache-hit != 'true'
Expand All @@ -133,7 +133,7 @@ jobs:
Get-Content ${{env.USER_CONFIG}}
cd lib/boost
cmd.exe /c 'bootstrap.bat'
.\b2.exe --user-config=${{env.USER_CONFIG}} -j6 -sNO_ZLIB=0 -sZLIB_INCLUDE="zlib-1.2.13" -sZLIB_SOURCE="zlib-1.2.13" address-model=64 link=static python="3.6","3.7","3.8","3.9","3.10"
.\b2.exe --user-config=${{env.USER_CONFIG}} -j6 -sNO_ZLIB=0 -sZLIB_INCLUDE="zlib-1.3" -sZLIB_SOURCE="zlib-1.3" address-model=64 link=static python="3.6","3.7","3.8","3.9","3.10"
build-libs:
Expand Down

0 comments on commit 7549cd4

Please sign in to comment.