diff options
Diffstat (limited to '.github/workflows/ci-alpine-linux.yml')
-rw-r--r-- | .github/workflows/ci-alpine-linux.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/ci-alpine-linux.yml b/.github/workflows/ci-alpine-linux.yml index 3c5fb06d..e50c9765 100644 --- a/.github/workflows/ci-alpine-linux.yml +++ b/.github/workflows/ci-alpine-linux.yml @@ -4,12 +4,19 @@ on: [push, pull_request] jobs: - gcc-musl: + alpine: + name: Alpine Linux runs-on: ubuntu-latest container: alpine:latest + strategy: + fail-fast: false + matrix: + compiler: + - gcc + env: + CC: ${{ matrix.compiler }} steps: - - name: install deps - run: >- + - run: >- apk --no-cache add \ build-base \ meson \ @@ -18,14 +25,7 @@ jobs: linux-pam-dev \ libcap \ libcap-dev - - name: checkout - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - run: meson setup builddir/ - env: - CC: gcc - run: meson compile -C builddir - env: - CC: gcc - run: meson test --verbose -C builddir - env: - CC: gcc |