commit: 65f4631bdc891fb2a8cfd13f92acaeeba3d9cf2b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Jan 29 03:44:43 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 29 03:47:11 2023 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=65f4631b
.github: add Alpine CI Signed-off-by: Sam James <sam <AT> gentoo.org> .github/workflows/ci-alpine-linux.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) 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