openrc/.github/workflows/ci-alpine-linux.yml

32 lines
642 B
YAML
Raw Normal View History

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 \
libcap \
libcap-dev
- name: checkout
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