run meson compile before running check commands

This commit is contained in:
John Turner
2025-11-30 19:05:02 +00:00
parent b0311ba813
commit f06859c447

View File

@@ -15,6 +15,8 @@ if [[ ! -d build ]]; then
meson setup -Dfuzz=enabled -Dtests=enabled build || exit $?
fi
meson compile -C build || exit $?
ebegin "running check commands"
parallel --halt soon,fail=1 --keep-order -j$(nproc) < check_commands.txt
eend $? || exit $?