From 0b2868d1a9c0afa4224a40548257e09317d019dc Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 14 Jul 2024 12:12:22 +0200 Subject: [PATCH] ci: add more libs to link for gcc (alpine) --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ee4e936..f01191cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,10 +87,16 @@ jobs: name: Build and test Alpine executable steps: - uses: actions/checkout@v4 - - name: Install dependencies and tools + - name: Install tools and dependencies run: | apk add --update --no-cache \ bash \ + libcurl \ + libdw \ + zlib \ + libgcc \ + libstdc++ \ + \ binutils-dev \ build-base \ cmake \