2020-11-29 20:43:04 +00:00
|
|
|
name: freebsd
|
|
|
|
|
2023-10-25 16:35:58 +00:00
|
|
|
on: [push, pull_request]
|
2020-11-29 20:43:04 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
clang:
|
2022-07-29 19:59:50 +00:00
|
|
|
# Run actions in a FreeBSD VM on the macos-12 runner
|
2021-11-20 04:35:51 +00:00
|
|
|
# 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
|
2022-07-29 19:59:50 +00:00
|
|
|
runs-on: macos-12
|
2020-11-29 20:43:04 +00:00
|
|
|
steps:
|
2023-10-25 16:35:58 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Test in FreeBSD VM
|
|
|
|
uses: cross-platform-actions/action@v0.19.1
|
|
|
|
timeout-minutes: 30
|
|
|
|
with:
|
|
|
|
operating_system: freebsd
|
|
|
|
version: "13.2"
|
|
|
|
environment_variables: CPPFLAGS=-isystem/usr/local/include LDFLAGS=-L/usr/local/lib
|
|
|
|
run: |
|
|
|
|
sudo sed -i '' 's/quarterly/latest/' /etc/pkg/FreeBSD.conf
|
|
|
|
sudo pkg install -y git # subprojects/date
|
|
|
|
sudo 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 \
|
|
|
|
libinotify
|
|
|
|
meson build -Dman-pages=enabled
|
|
|
|
ninja -C build
|
|
|
|
meson test -C build --no-rebuild --print-errorlogs --suite waybar
|