foot/.builds/freebsd-x64.yml.disabled

37 lines
816 B
Text

image: freebsd/latest
packages:
- meson
- ninja
- pkgconf
- scdoc
- wayland
- wayland-protocols
- freetype2
- fontconfig
- harfbuzz
- pixman
- libxkbcommon
- ncurses
- check
- ttf-hack
- font-noto-emoji
sources:
- https://codeberg.org/dnkl/foot
# triggers:
# - action: email
# condition: failure
# to: <committer>
tasks:
- debug: |
mkdir -p bld/debug
meson --buildtype=debug -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/debug
ninja -C bld/debug -k0
meson test -C bld/debug --print-errorlogs
- release: |
mkdir -p bld/release
meson --buildtype=minsize -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/release
ninja -C bld/release -k0
meson test -C bld/release --print-errorlogs