diff options
author | Kenny Levinsen <kl@kl.wtf> | 2021-09-21 13:11:55 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2021-09-21 13:11:55 +0200 |
commit | 1c376ca9b13458b1e4ad0da20c8d35729fa09d4b (patch) | |
tree | 7612bb54fafc83538d78a8d1c8189e6ff18cb63a /.builds/freebsd.yml | |
parent | e2baadc23047edaccc4a7d3d95e6ba8c30f75851 (diff) |
ci: Inline smoketest into build scripts
The smoketest script has gotten significantly simpler, and can simply be
inlined into the build scripts if we don't care about running the tests
twice.
This should fix CI for mailing list patches.
Diffstat (limited to '.builds/freebsd.yml')
-rw-r--r-- | .builds/freebsd.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 79bee15..b4bc7da 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -15,6 +15,6 @@ tasks: meson -Db_lundef=false -Db_sanitize=address -Dlibseat-seatd=enabled -Dlibseat-builtin=enabled -Dexamples=enabled -Dlibseat-logind=disabled build seatd ninja -C build sudo ninja -C build install - timeout -s KILL 30s ./seatd/.builds/smoketest-seatd.sh + timeout -s KILL 30s sudo SEATD_LOGLEVEL=debug ./build/seatd-launch ./build/simpletest /dev/input/event0 - smoketest-builtin: | - timeout -s KILL 30s ./seatd/.builds/smoketest-builtin.sh + timeout -s KILL 30s sudo LIBSEAT_BACKEND=builtin ./build/simpletest /dev/input/event0 |