separate github actions based on OS

This fixes #466.
This commit is contained in:
William Hubbs
2021-10-09 12:37:05 -05:00
parent c45e3361ee
commit 2b55ac719a
3 changed files with 58 additions and 55 deletions

26
.github/workflows/ci-alpine-linux.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: ci_alpine_linux
on: [push, pull_request]
jobs:
gcc-musl:
runs-on: ubuntu-latest
container: alpine:latest
steps:
- name: install deps
run: >-
apk --no-cache add \
build-base \
meson \
pkgconf \
linux-pam \
linux-pam-dev
- name: checkout
uses: actions/checkout@v2
- run: meson setup builddir/
env:
CC: gcc
- run: ninja -C builddir
env:
CC: gcc