From 4a6a7b0799d311c68bf948785c159262702fda32 Mon Sep 17 00:00:00 2001 From: Jacob Morrison Date: Mon, 8 Jan 2024 10:34:21 -0500 Subject: [PATCH] correct zlib add and run make install --- .github/workflows/check_build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_build.yml b/.github/workflows/check_build.yml index 5a07f70..1042614 100644 --- a/.github/workflows/check_build.yml +++ b/.github/workflows/check_build.yml @@ -14,10 +14,10 @@ jobs: - uses: actions/checkout@v3 - name: Install system dependencies - run: sudo apt install libcurl4-openssl-dev zlib + run: sudo apt install libcurl4-openssl-dev zlib1g-dev - name: Check build - run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make + run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make && make install - name: Install Check run: cd ../ && ./bin/biscuit version @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v3 - name: Check build - run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make + run: mkdir build && cd build && cmake ../ -DCMAKE_INSTALL_PREFIX=../ && make && make install - name: Install Check run: cd ../ && ./bin/biscuit version