aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci-alpine-linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-alpine-linux.yml')
-rw-r--r--.github/workflows/ci-alpine-linux.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/ci-alpine-linux.yml b/.github/workflows/ci-alpine-linux.yml
new file mode 100644
index 00000000..f5f2faed
--- /dev/null
+++ b/.github/workflows/ci-alpine-linux.yml
@@ -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