Change fallback return value for libwacom_get_button_led_group to an int #1172
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: "FreeBSD build and test" | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
### | |
# | |
# FreeBSD build job | |
# | |
freebsd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: meson test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
prepare: | | |
pkg install -y meson pkgconf evdev-proto libgudev libxml++ bash libevdev | |
pkg install -y -g py3\*-pip python3 | |
pip install libevdev pytest pyudev | |
run: | | |
meson setup builddir | |
meson test -C builddir --print-errorlogs | |
# Capture all the meson logs, even if we failed | |
- uses: actions/upload-artifact@v4 | |
if: ${{ always() }} # even if we fail | |
with: | |
name: meson test logs | |
path: | | |
builddir/meson-logs/testlog*.txt | |
builddir/meson-logs/meson-log.txt |