commit: 90b9a7a12ebd1531738877e63f85c42b740e0a36
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 03:14:58 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 17:25:43 2023 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=90b9a7a1
CI: add musl config
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit 8fd0fb9f956c65dab850895102b21a7fef92b753)
.github/workflows/build-test-ci.yml | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
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; }