Run the testsuite on musl as well in the CI

This commit is contained in:
jvoisin 2021-12-23 17:52:35 +01:00 committed by Daniel Micay
parent 0655c1d024
commit a84d3f5310

View File

@ -7,7 +7,7 @@ on:
- cron: '0 2 * * *' - cron: '0 2 * * *'
jobs: jobs:
build: build-ubuntu-gcc:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -19,3 +19,13 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build - name: Build
run: CC=clang CXX=clang++ make test 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