From 5efdfb342a6f14bbc261f5717a94195cdff0da58 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 17 Jan 2025 20:00:59 +0100 Subject: [PATCH] [CI] Always test from clean --- extras/test/unit/test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extras/test/unit/test.sh b/extras/test/unit/test.sh index 369690ad..b2801a10 100755 --- a/extras/test/unit/test.sh +++ b/extras/test/unit/test.sh @@ -3,7 +3,8 @@ set -e # build the test binary -mkdir -p build +rm -rf build +mkdir build cd build cmake -G "CodeBlocks - Unix Makefiles" .. make -j4