From: William Lallemand Date: Mon, 13 Apr 2026 09:26:52 +0000 (+0200) Subject: CI: github: add bash to the musl job X-Git-Tag: v3.4-dev9~59 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=073240044e476c365242a5541c01bb0503f1e7c2;p=thirdparty%2Fhaproxy.git CI: github: add bash to the musl job Previous commit 6e67b59 ("CI: Consistently set up VTest with ./.github/actions/setup-vtest") requires bash to use the github action. This commit adds bash to the list of installed package in alpine. --- diff --git a/.github/workflows/musl.yml b/.github/workflows/musl.yml index ce6f31e40..4c32c87a1 100644 --- a/.github/workflows/musl.yml +++ b/.github/workflows/musl.yml @@ -22,7 +22,7 @@ jobs: echo '/tmp/core/core.%h.%e.%t' > /proc/sys/kernel/core_pattern - uses: actions/checkout@v6 - name: Install dependencies - run: apk add gcc gdb make tar git python3 libc-dev linux-headers pcre-dev pcre2-dev openssl-dev lua5.3-dev grep socat curl musl-dbg lua5.3-dbg jose + run: apk add gcc gdb make bash tar git python3 libc-dev linux-headers pcre-dev pcre2-dev openssl-dev lua5.3-dev grep socat curl musl-dbg lua5.3-dbg jose - uses: ./.github/actions/setup-vtest - name: Build run: make -j$(nproc) TARGET=linux-musl DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" ARCH_FLAGS='-ggdb3' CC=cc V=1 USE_LUA=1 LUA_INC=/usr/include/lua5.3 LUA_LIB=/usr/lib/lua5.3 USE_OPENSSL=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_PROMEX=1