From 49f8440785ee10307626b960f08f98c0041bd526 Mon Sep 17 00:00:00 2001 From: Kristaps Dz Date: Sat, 18 Nov 2023 14:01:17 -0800 Subject: [PATCH] Add Alpine (musl libc) regressions. --- .github/workflows/makefile.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index ce6c4e08..761a8614 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -37,3 +37,19 @@ jobs: run: bmake - name: Run regress run: bmake regress + alpine_sandboxed: + runs-on: ubuntu-latest + steps: + - name: Setup Alpine Linux environment + uses: jirutka/setup-alpine@v1.1.4 + - name: Install dependencies + run: | + cat /etc/alpine-release + apk add build-base libcurl bmake + shell: alpine.sh --root {0} + - name: Compile and run regress + run: | + ./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1" + bmake + bmake regress + shell: alpine.sh {0}