Skip to content

(lua) suppress warning in trace function reg. #430

(lua) suppress warning in trace function reg.

(lua) suppress warning in trace function reg. #430

Workflow file for this run

name: FreeBSD
on: [ push, pull_request ]
jobs:
build-everything:
runs-on: macos-12 # until https://github.com/actions/runner/issues/385
steps:
- uses: actions/checkout@v2
- name: Test in FreeBSD VM
uses: vmactions/freebsd-vm@v0
with:
copyback: false
prepare: |
pkg install -y cmake ninja pkgconf # build
pkg install -y evdev-proto freetype2 luajit openal-soft sqlite3 # common
pkg install -y -x '^mesa($|-libs)' # egl-dri
pkg install -y wayland-protocols wayland xcb-util-wm libxkbcommon # wayland
pkg install -y sdl2 # sdl (hybrid)
pkg install -y espeak vlc # decode
pkg install -y ffmpeg libvncserver tesseract # encode
run: |
cmake -B _build -G Ninja -S src -DBUILD_PRESET:STRING="everything"
cmake --build _build