From f06859c447d13eb2c0385eefea6c73548fa83db5 Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 30 Nov 2025 19:05:02 +0000 Subject: [PATCH] run meson compile before running check commands --- check.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/check.sh b/check.sh index 0140b6f..fa7fcd3 100755 --- a/check.sh +++ b/check.sh @@ -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 $?