trivial: Allow loading multiple JSON emulations on the CLI #193
Workflow file for this run
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
name: Build and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
distro: | |
- fedora | |
- debian | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build -t libgusb-${{ matrix.distro }} -f contrib/ci/Dockerfile-${{ matrix.distro }} . | |
- run: docker run -t -v `pwd`:/build libgusb-${{ matrix.distro }} ./contrib/ci/build_and_test.sh -Dtests=false | |
build-freebsd: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
id: test | |
uses: vmactions/[email protected] | |
with: | |
usesh: true | |
mem: 8192 | |
prepare: | | |
pkg install -y git python3 glib json-glib meson pkgconf gobject-introspection usbids | |
sync: rsync | |
run: ./contrib/ci/build_and_test.sh -Dvapi=false -Ddocs=false -Dusb_ids=/usr/local/share/usbids/usb.ids |