From 29c1087b7baa4d7055fd244591122e83d80d551e Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Mon, 21 Jun 2021 20:41:38 +0100 Subject: [PATCH] CI: Don't rebuild when running tests Just cosmetic for now, but tell Meson to just run our tests rather than trying to rebuild them. Signed-off-by: Daniel Stone --- .gitlab-ci/virtme-scripts/run-weston-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/virtme-scripts/run-weston-tests.sh b/.gitlab-ci/virtme-scripts/run-weston-tests.sh index 40e80e90..4d15f089 100755 --- a/.gitlab-ci/virtme-scripts/run-weston-tests.sh +++ b/.gitlab-ci/virtme-scripts/run-weston-tests.sh @@ -23,7 +23,7 @@ while ! [ -e /run/seatd.sock ]; do sleep 0.1; done # run the tests and save the exit status # we give ourselves a very generous timeout multiplier due to ASan overhead -ASAN_OPTIONS=detect_leaks=0,atexit=1 meson test --timeout-multiplier 4 +ASAN_OPTIONS=detect_leaks=0,atexit=1 meson test --no-rebuild --timeout-multiplier 4 TEST_RES=$? # create a file to keep the result of this script: