Waybar/.github/workflows/freebsd.yml

29 lines
1.1 KiB
YAML
Raw Normal View History

2020-11-29 20:43:04 +00:00
name: freebsd
on: [ push, pull_request ]
jobs:
clang:
# Run actions in a FreeBSD vm on the macos-10.15 runner
# https://github.com/actions/runner/issues/385 - for FreeBSD runner support
# https://github.com/actions/virtual-environments/issues/4060 - for lack of VirtualBox on MacOS 11 runners
runs-on: macos-10.15
2020-11-29 20:43:04 +00:00
steps:
- uses: actions/checkout@v2
- name: Test in FreeBSD VM
uses: vmactions/freebsd-vm@v0.1.7 # aka FreeBSD 13.1
2020-11-29 20:43:04 +00:00
with:
mem: 2048
2020-11-29 20:43:04 +00:00
usesh: true
prepare: |
export CPPFLAGS=-isystem/usr/local/include LDFLAGS=-L/usr/local/lib # sndio
sed -i '' 's/quarterly/latest/' /etc/pkg/FreeBSD.conf
pkg install -y git # subprojects/date
2021-09-14 07:02:38 +00:00
pkg install -y catch evdev-proto gtk-layer-shell gtkmm30 jsoncpp \
libdbusmenu libevdev libfmt libmpdclient libudev-devd meson \
pkgconf pulseaudio scdoc sndio spdlog wayland-protocols upower
2020-11-29 20:43:04 +00:00
run: |
meson build -Dman-pages=enabled
ninja -C build
2021-09-14 07:02:38 +00:00
meson test -C build --no-rebuild --print-errorlogs --suite waybar