foot/.builds/freebsd-x64.yml

39 lines
868 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>
tasks:
- debug: |
mkdir -p bld/debug
meson --buildtype=debug -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 -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