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

44 lines
1 KiB
Text
Raw Normal View History

2020-04-12 18:33:27 +02:00
image: freebsd/latest
packages:
- 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
- ncurses
- check
- ttf-hack
- font-noto-emoji
2020-04-12 18:33:27 +02:00
sources:
- https://codeberg.org/dnkl/foot
- https://codeberg.org/dnkl/tllist
- https://codeberg.org/dnkl/fcft
# triggers:
# - action: email
# condition: failure
# to: <committer>
tasks:
- subprojects: |
mkdir foot/subprojects
ln -s ../../tllist foot/subprojects/tllist
ln -s ../../fcft foot/subprojects/fcft
- debug: |
mkdir -p bld/debug
2020-09-16 19:13:22 +02:00
meson --buildtype=debug -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
2020-09-16 19:13:22 +02:00
meson --buildtype=minsize -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