blob: 944c85d5544dd5288994497501fe08259841facd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
image: freebsd/latest
packages:
- meson
sources:
- https://git.sr.ht/~kennylevinsen/seatd
tasks:
- prepare: |
cd seatd
meson build -Dseatd=enabled -Dbuiltin=enabled -Dlogind=disabled
- build: |
cd seatd
ninja -C build
- smoketest: |
cd seatd
timeout -s KILL 30s ./.builds/smoketest-seatd.sh
- smoketest-builtin: |
cd seatd
timeout -s KILL 30s ./.builds/smoketest-builtin.sh
|