aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2023-06-22 23:14:58 -0400
committerMike Gilbert <floppym@gentoo.org>2023-06-23 13:25:43 -0400
commit90b9a7a12ebd1531738877e63f85c42b740e0a36 (patch)
tree66fa5f8c57248942813eac9b72175aac3ffc1ba2
parentconfigure: update libc grep expression (diff)
downloadsandbox-90b9a7a12ebd1531738877e63f85c42b740e0a36.tar.gz
sandbox-90b9a7a12ebd1531738877e63f85c42b740e0a36.tar.bz2
sandbox-90b9a7a12ebd1531738877e63f85c42b740e0a36.zip
CI: add musl config
Signed-off-by: Mike Gilbert <floppym@gentoo.org> (cherry picked from commit 8fd0fb9f956c65dab850895102b21a7fef92b753)
-rw-r--r--.github/workflows/build-test-ci.yml21
1 files changed, 20 insertions, 1 deletions
diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 7ad056b..4a3ef88 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -13,7 +13,7 @@ name: Build+Test CI
on: [pull_request, push]
jobs:
- make:
+ glibc:
strategy:
matrix:
os: [ubuntu-latest]
@@ -56,3 +56,22 @@ jobs:
make V=1
make V=1 check
make V=1 distcheck
+
+ musl:
+ runs-on: ubuntu-latest
+ container:
+ image: alpine:latest
+ options: --cap-add=SYS_PTRACE
+ steps:
+ - name: Install dependencies
+ run: apk add bash coreutils build-base automake autoconf autoconf-archive libtool pax-utils gawk sed
+
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Build
+ run: |
+ ./autogen.sh
+ ./configure || { cat config.log; false; }
+ make V=1
+ make V=1 check || { cat tests/testsuite.log; false; }