From e105ac5be7a6ae6ead74e6009cca8e90cba3ca77 Mon Sep 17 00:00:00 2001 From: Fethbita Date: Sun, 6 Oct 2024 19:28:13 +0300 Subject: [PATCH] Try to add openssl-libs-static to see if it changes anything I assume it will not fix anything because the problem seems to be related to pcsc-lite --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0e81531..40839be 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,7 +23,7 @@ jobs: run: | apk add --no-cache pcsc-lite-dev # For pcsc dependency apk add --no-cache musl-dev # For tracing-attributes dependency (needs crti.o) - apk add --no-cache pkgconf openssl-dev gcc make perl-dev # For openssl dependency (see https://github.com/Fethbita/emrtd/pull/3) + apk add --no-cache pkgconf openssl-dev openssl-libs-static gcc make perl-dev # For openssl dependency (see https://github.com/Fethbita/emrtd/pull/3, https://github.com/rust-lang/docker-rust/issues/167) - name: Build run: cargo build --all-features --verbose