ci: initial FreeBSD build manifest

This commit is contained in:
Daniel Eklöf 2020-04-12 18:33:27 +02:00
parent 9a71f20de7
commit 3f35a40ff8
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

39
.builds/freebsd.yml Normal file
View file

@ -0,0 +1,39 @@
image: freebsd/latest
packages:
- meson
- ninja
- pkgconf
- scdoc
- wayland
- wayland-protocols
- freetype2
- fontconfig
- pixman
- libxkbcommon
- ncurses
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 foot bld/debug
ninja -C bld/debug -k0
meson test -C bld/debug --print-errorlogs
- release: |
mkdir -p bld/release
meson --buildtype=minsize foot bld/release
ninja -C bld/release -k0
meson test -C bld/release --print-errorlogs