From b0dec8dce5f3488a09e305dbaafae392c78cdb0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=20Kl=C3=A4rner?= Date: Sun, 25 Aug 2024 00:35:02 +0200 Subject: [PATCH] linux build needs openssl headers --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3635ac1..f0b9b42 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -59,6 +59,10 @@ jobs: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }} ${{ runner.os }}-cargo + - name: install openssl-dev for crate openssl-sys + # see https://docs.rs/openssl/latest/openssl/#automatic for the recommendation on which packages are needed + run: sudo apt-get install pkg-config libssl-dev + - uses: actions-rs/toolchain@v1 with: profile: minimal