From 808386dd05873e303c49756b4c7e39362a713803 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Fri, 20 Dec 2024 19:53:40 +0100 Subject: [PATCH] Add gawk to alpine build This is required for gcc to build correctly. --- .github/workflows/compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index c76ec3d..9c61dc5 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -22,7 +22,7 @@ jobs: if: matrix.os[0] == 'alpine' run: | apk add --no-cache build-base bash gcc git make autoconf automake python3 py3-pip cmake pkgconfig libarchive-dev openssl-dev gpgme-dev \ - libtool flex bison texinfo gmp-dev mpfr-dev mpc1-dev readline-dev ncurses-dev + libtool flex bison texinfo gmp-dev mpfr-dev mpc1-dev readline-dev ncurses-dev gawk - name: Install dependencies Fedora if: matrix.os[0] == 'fedora'