Skip to content

Commit

Permalink
Fix zlib link
Browse files Browse the repository at this point in the history
  • Loading branch information
fpseverino committed Sep 7, 2024
1 parent b8b5284 commit 64ae784
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
tag: ${{ matrix.swift-tag }}
- name: Download zlib
run: |
curl -L -o zlib.zip https://zlib.net/zlib1211.zip
7z x zlib.zip -ozlib-1.2.11
cd zlib-1.2.11
curl -L -o zlib.zip https://www.zlib.net/zlib131.zip
7z x zlib131.zip -ozlib-1.3.1
cd zlib-1.3.1
mkdir build
cd build
cmake ..
Expand All @@ -47,4 +47,4 @@ jobs:
uses: actions/checkout@v4
- name: Run unit tests
run: |
swift test -Xcc -Izlib-1.2.11/install/include -Xlinker -Lzlib-1.2.11/install/lib
swift test -Xcc -Izlib-1.3.1/install/include -Xlinker -Lzlib-1.3.1/install/lib

0 comments on commit 64ae784

Please sign in to comment.