SDL/.github/workflows/vmactions.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

2022-07-30 06:35:38 -06:00
name: Build (VM Actions)
on: [push, pull_request]
jobs:
freebsd:
runs-on: macos-12
name: FreeBSD
steps:
2022-10-12 16:51:59 -06:00
- uses: actions/checkout@v3
2022-07-30 06:35:38 -06:00
- name: Build
uses: vmactions/freebsd-vm@v0
with:
usesh: true
prepare: |
pkg install -y \
cmake \
ninja \
2022-07-30 06:35:38 -06:00
pkgconf \
libXcursor \
libXext \
libXinerama \
libXi \
libXfixes \
libXrandr \
libXScrnSaver \
libXxf86vm \
wayland \
wayland-protocols \
libxkbcommon \
mesa-libs \
libglvnd \
evdev-proto \
libinotify \
alsa-lib \
2022-11-22 20:50:20 -07:00
jackit \
2022-07-30 06:35:38 -06:00
pipewire \
pulseaudio \
2022-11-22 20:50:20 -07:00
sndio \
2022-07-30 06:35:38 -06:00
dbus \
zh-fcitx \
ibus \
libsamplerate \
libudev-devd
run: |
cmake -S . -B build -GNinja \
-SDL_CHECK_REQUIRED_INCLUDES="/usr/local/include" \
-DSDL_CHECK_REQUIRED_LINK_OPTIONS="-L/usr/local/lib"
cmake --build build --verbose -- -j`sysctl -n hw.ncpu`