From a78028e54e5c6eb8ba9f7e7e389d7d713e4ffbf3 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Fri, 27 Dec 2024 18:43:45 +0800 Subject: [PATCH] DEV: Run one system test process per CPU core (#30484) We are running on self hosted runners with more CPU and RAM so we should be able to run one system test process per CPU core for more speedz. This may lead to some instability in our system tests but it is hard to say unless we roll this change out. If it does lead to system tests being more unstable, we can easily roll back the change. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 434afb59255..ce103e87e0b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -72,7 +72,7 @@ jobs: - name: Set PARALLEL_TEST_PROCESSORS for system tests if: matrix.build_type == 'system' run: | - echo "PARALLEL_TEST_PROCESSORS=$(($(nproc) / 2))" >> $GITHUB_ENV + echo "PARALLEL_TEST_PROCESSORS=$(nproc)" >> $GITHUB_ENV - name: Set QUNIT_PARALLEL for QUnit tests if: matrix.build_type == 'frontend'