Dynamically get the udevadm hwdb files with a path variable #137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this can and should be optimized, the setup steps can be cached in docker, | |
# and that should be broken out, annoyingly, though, I can't do that with | |
# proper interjob dependency tracking without exposing tokens to third parties | |
# possibly | |
name: build | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: ['dyne/devuan:chimaera', 'alpine:latest'] | |
container: | |
image: ${{ matrix.distro }} | |
steps: | |
- name: install prerequisites (alpine) | |
if: ${{ matrix.distro == 'alpine:latest' }} | |
run: >- | |
apk --no-cache add \ | |
build-base \ | |
gperf \ | |
glib-dev \ | |
linux-headers \ | |
kmod-dev \ | |
gobject-introspection-dev \ | |
util-linux-dev \ | |
perl \ | |
autoconf \ | |
libxslt \ | |
automake \ | |
tree | |
- name: install prerequisites (devuan) | |
if: ${{ matrix.distro == 'dyne/devuan:chimaera' }} | |
run: >- | |
apt-get update && apt-get install -y \ | |
build-essential \ | |
libblkid-dev \ | |
libkmod-dev \ | |
libselinux1-dev \ | |
autoconf \ | |
automake \ | |
xsltproc \ | |
docbook-xml \ | |
docbook-xsl \ | |
gperf \ | |
libglib-object-introspection-perl \ | |
libglib2.0-dev \ | |
linux-headers-amd64 \ | |
libtool \ | |
tree | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: generate configure script | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make -j$(($(nproc)+1)) | |
- name: check | |
run: make check || cat test/udev-test.pl.log |