From 733eb07dd2add05e2438d79b15ad602a99603dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Sat, 6 May 2023 14:54:33 +0200 Subject: [PATCH] Run ctest tests in parallel (#20137) --- scripts/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-tests b/scripts/run-tests index 11e4f0679a..89973f73ff 100755 --- a/scripts/run-tests +++ b/scripts/run-tests @@ -20,5 +20,5 @@ if [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then ./tests --gtest_output=xml:../artifacts/test-results.xml "$@" else echo -e "\033[0;36mRunning OpenRCT2 tests...\033[0m" - ctest --output-on-failure --output-junit ../artifacts/test-results.xml "$@" + ctest -j 2 --output-on-failure --output-junit ../artifacts/test-results.xml "$@" fi