From a84d3f5310987c6de4de0a314abd6d6193af76c4 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Thu, 23 Dec 2021 17:52:35 +0100 Subject: [PATCH] Run the testsuite on musl as well in the CI --- .github/workflows/build-and-test.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 52e2877..99e2111 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -7,7 +7,7 @@ on: - cron: '0 2 * * *' jobs: - build: + build-ubuntu-gcc: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -19,3 +19,13 @@ jobs: - uses: actions/checkout@v2 - name: Build run: CC=clang CXX=clang++ make test + build-musl: + runs-on: ubuntu-latest + container: + image: alpine:latest + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: apk add build-base python3 + - name: Build + run: make test