From 073240044e476c365242a5541c01bb0503f1e7c2 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 13 Apr 2026 11:26:52 +0200 Subject: [PATCH] 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. --- .github/workflows/musl.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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