Skip to content

Commit

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

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

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

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

# These haven't been generated yet, so uncomment when ready
# - name: Run tests
Expand All @@ -32,7 +35,10 @@ jobs:
- uses: actions/checkout@v3

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

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

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

0 comments on commit 31a6ea3

Please sign in to comment.