mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-10 08:20:59 -04:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
image: freebsd/latest
|
|
packages:
|
|
- evdev-proto
|
|
- libepoll-shim
|
|
- meson
|
|
- ninja
|
|
- pkgconf
|
|
- scdoc
|
|
- wayland
|
|
- wayland-protocols
|
|
- freetype2
|
|
- fontconfig
|
|
- harfbuzz
|
|
- pixman
|
|
- libxkbcommon
|
|
- check
|
|
- hack-font
|
|
- noto-emoji
|
|
|
|
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
|
|
meson --buildtype=debug -Dterminfo=disabled -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 -Dterminfo=disabled -Dfcft:text-shaping=enabled -Dfcft:test-text-shaping=true foot bld/release
|
|
ninja -C bld/release -k0
|
|
meson test -C bld/release --print-errorlogs
|