From 3bbfaf532e5b84e606291172d7c1ef39d35d63a7 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Wed, 8 Jan 2025 13:23:32 -0600 Subject: [PATCH] Bump CTEST_PARALLEL_LEVEL to match CTEST_BUILD_PARALLEL_LEVEL This is an experiment to see if it causes any of the tests to flake and/or if it even appreciably speeds up CI to begin with. I note that there are tests added in 8bf8b10 that mutate global terminal state but also note that local tests without CTEST_PARALLEL_LEVEL set at all have been running to completion just fine without any observed flakiness *and* that our Cirrus CI tests have this hard-coded to 6. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 374ea89aa..7e3344d5f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ name: make test on: [push, pull_request] env: - CTEST_PARALLEL_LEVEL: "1" + CTEST_PARALLEL_LEVEL: "4" CMAKE_BUILD_PARALLEL_LEVEL: "4" permissions: