From e204fa53a3adb60196b33359fe84867b328d3272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 15 Oct 2024 13:00:34 +0200 Subject: [PATCH] Fix CI for setup-alpine Ref: https://github.com/jirutka/setup-alpine/issues/15 --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42fe644..f24fe35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,12 @@ jobs: popd echo "CC=tcc" >> $GITHUB_ENV; + - name: Install extra dependencies + if: ${{ matrix.config.arch != '' }} + shell: 'sh' + run: | + sudo apt update && sudo apt install -y binfmt-support + - name: Setup Alpine if: ${{ matrix.config.arch != '' }} uses: jirutka/setup-alpine@v1