aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-29 03:44:43 +0000
committerSam James <sam@gentoo.org>2023-01-29 03:47:11 +0000
commit65f4631bdc891fb2a8cfd13f92acaeeba3d9cf2b (patch)
tree8ca3b53c0967510675cab7a13458917b17128a4d /.github
parent*: IWYU fixes deux (diff)
downloadpax-utils-65f4631bdc891fb2a8cfd13f92acaeeba3d9cf2b.tar.gz
pax-utils-65f4631bdc891fb2a8cfd13f92acaeeba3d9cf2b.tar.bz2
pax-utils-65f4631bdc891fb2a8cfd13f92acaeeba3d9cf2b.zip
.github: add Alpine CI
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-alpine-linux.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/ci-alpine-linux.yml b/.github/workflows/ci-alpine-linux.yml
new file mode 100644
index 0000000..de7157c
--- /dev/null
+++ b/.github/workflows/ci-alpine-linux.yml
@@ -0,0 +1,34 @@
+name: ci_alpine_linux
+
+on: [push, pull_request]
+
+jobs:
+
+ alpine:
+ name: Alpine Linux
+ runs-on: ubuntu-latest
+ container: alpine:latest
+ strategy:
+ fail-fast: false
+ matrix:
+ compiler:
+ - gcc
+ - clang
+ env:
+ CC: ${{ matrix.compiler }}
+ steps:
+ - run: >-
+ apk --no-cache add \
+ build-base \
+ clang \
+ meson \
+ pkgconf \
+ py3-elftools \
+ libcap \
+ libcap-dev \
+ libseccomp \
+ libseccomp-dev
+ - uses: actions/checkout@v2
+ - run: meson setup -Dtests=false -Duse_fuzzing=false builddir/
+ - run: meson compile -C builddir
+ - run: meson test --verbose -C builddir