foot/.builds/freebsd-x64.yml

41 lines
998 B
YAML
Raw Normal View History

2020-04-12 18:33:27 +02:00
image: freebsd/latest
packages:
- evdev-proto
- libepoll-shim
2020-04-12 18:33:27 +02:00
- meson
- ninja
- pkgconf
- scdoc
- wayland
- wayland-protocols
- freetype2
- fontconfig
2020-09-16 19:13:22 +02:00
- harfbuzz
2020-04-12 18:33:27 +02:00
- pixman
- libxkbcommon
- check
- hack-font
- noto-emoji
2020-04-12 18:33:27 +02:00
sources:
- https://codeberg.org/dnkl/foot
# triggers:
# - action: email
# condition: failure
# to: <committer>
# TODO: drop -Dc_args=-Wno-missing-braces when freebsd/latest is >= 13
2020-04-12 18:33:27 +02:00
tasks:
- debug: |
mkdir -p bld/debug
meson --buildtype=debug -Dc_args=-Wno-missing-braces -Dterminfo=false -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/debug
2020-04-12 18:33:27 +02:00
ninja -C bld/debug -k0
meson test -C bld/debug --print-errorlogs
- release: |
mkdir -p bld/release
meson --buildtype=minsize -Dc_args=-Wno-missing-braces -Dterminfo=false -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/release
2020-04-12 18:33:27 +02:00
ninja -C bld/release -k0
meson test -C bld/release --print-errorlogs