Skip to content

Commit

Permalink
switch zlib to libdeflate and update install check
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorrison committed Jan 8, 2024
1 parent 4a6a7b0 commit 3b995a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- uses: actions/checkout@v3

- name: Install system dependencies
run: sudo apt install libcurl4-openssl-dev zlib1g-dev
run: sudo apt install libcurl4-openssl-dev libdeflate-dev

- name: Check build
run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make && make install

- name: Install Check
run: cd ../ && ./bin/biscuit version
run: ./bin/biscuit version

# These haven't been generated yet, so uncomment when ready
# - name: Run tests
Expand All @@ -38,7 +38,7 @@ jobs:
run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make && make install

- name: Install Check
run: cd ../ && ./bin/biscuit version
run: ls . && ./bin/biscuit version

# These haven't been generated yet, so uncomment when ready
# - name: Run tests
Expand Down

0 comments on commit 3b995a2

Please sign in to comment.