-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0d2fb8
commit 51c9323
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,11 @@ env: | |
-Dwrap_mode=nofallback | ||
-Dx11=disabled | ||
MESON_ARGS_FREEBSD: >- | ||
-Dicmp-errors=disabled | ||
-Dwindows-crash-dumps=disabled | ||
-Dwrap_mode=nofallback | ||
jobs: | ||
mingw: | ||
runs-on: ubuntu-latest | ||
|
@@ -126,3 +131,22 @@ jobs: | |
run: | | ||
meson setup ${{ env.MESON_ARGS }} ${{ env.MESON_ARGS_MACOS }} builddir | ||
meson compile -C builddir | ||
freebsd: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
uses: cross-platform-actions/[email protected] | ||
with: | ||
operating_system: freebsd | ||
architecture: x86-64 | ||
version: '14.0' | ||
run: | | ||
sudo pkg update | ||
sudo pkg install -y git meson pkgconf openal-soft \ | ||
sdl2 curl png jpeg-turbo libx11 libdecor evdev-proto wayland-protocols | ||
meson setup ${{ env.MESON_ARGS }} ${{ env.MESON_ARGS_FREEBSD }} builddir | ||
meson compile -C builddir |