diff options
author | Mike Gilbert <floppym@gentoo.org> | 2023-06-22 23:14:58 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2023-06-23 11:47:37 -0400 |
commit | 8fd0fb9f956c65dab850895102b21a7fef92b753 (patch) | |
tree | d19d2056118690aa7a97644ad1b16ff22fb3b0ce | |
parent | configure: update libc grep expression (diff) | |
download | sandbox-8fd0fb9f956c65dab850895102b21a7fef92b753.tar.gz sandbox-8fd0fb9f956c65dab850895102b21a7fef92b753.tar.bz2 sandbox-8fd0fb9f956c65dab850895102b21a7fef92b753.zip |
CI: add musl config
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
-rw-r--r-- | .github/workflows/build-test-ci.yml | 21 |
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; } |