From e3732fb1956c5f8cfa68074ba785a518a8c7f758 Mon Sep 17 00:00:00 2001 From: Marta Mularczyk Date: Wed, 22 Jan 2025 10:20:26 +0100 Subject: [PATCH] Install SQL on ubuntu github action --- .github/workflows/native_build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/native_build.yml b/.github/workflows/native_build.yml index 59fb6503..8f55e82a 100644 --- a/.github/workflows/native_build.yml +++ b/.github/workflows/native_build.yml @@ -43,6 +43,9 @@ jobs: curl -o C:/cacert.pem https://curl.se/ca/cacert.pem echo "SSL_CERT_FILE=C:/cacert.pem" | Out-File -FilePath $env:GITHUB_ENV -Append if: runner.os == 'Windows' + - run: | + sudo apt-get install -y libsqlite3-dev + if: runner.os == 'Linux' - name: Test Full RFC Compliance # Don't test AWS LC on all features as it makes it build both FIPS and non-FIPS versions run: cargo test --all-features --verbose --workspace --exclude mls-rs-crypto-aws-lc