ci: enable freebsd-x64 job

- Add missing dependencies
- Disable terminfo to match downstream
This commit is contained in:
Jan Beich 2021-01-21 06:52:22 +00:00 committed by Daniel Eklöf
parent 8b092256d1
commit d31cc9b5ef
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1,5 +1,7 @@
image: freebsd/latest
packages:
- evdev-proto
- libepoll-shim
- meson
- ninja
- pkgconf
@ -11,10 +13,9 @@ packages:
- harfbuzz
- pixman
- libxkbcommon
- ncurses
- check
- ttf-hack
- font-noto-emoji
- hack-font
- noto-emoji
sources:
- https://codeberg.org/dnkl/foot
@ -33,11 +34,11 @@ tasks:
ln -s ../../fcft foot/subprojects/fcft
- debug: |
mkdir -p bld/debug
meson --buildtype=debug -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/debug
meson --buildtype=debug -Dterminfo=false -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
meson --buildtype=minsize -Dterminfo=false -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/release
ninja -C bld/release -k0
meson test -C bld/release --print-errorlogs