From c67d490b9b1ad359e4e0f801c203c263cbfc7997 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 3 Jan 2025 12:27:21 -0300 Subject: ci: install bzip2 depenencies explicitly --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6d69570..1c1e5d98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,11 @@ jobs: - name: 'Setup macOS deps' if: ${{ contains(matrix.os, 'macos') }} - run: brew install openssl + run: brew install openssl bzip2 + + - name: 'Setup Ubuntu deps' + if: ${{ contains(matrix.os, 'ubuntu') }} + run: sudo apt-get install libbz2-dev - name: Prep run: | @@ -99,6 +103,9 @@ jobs: with: luaVersion: "5.4" + - name: 'Setup Ubuntu deps' + run: sudo apt-get install libbz2-dev + - name: Binary Build Smoke Test run: | ./configure -- cgit v1.2.3-55-g6feb