From c5a2ac3decabba53b50a1a9f8066dcb95746432c Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Mon, 6 Jan 2025 10:35:45 +0800 Subject: [PATCH] Revert "DEV: Run one system test process per CPU core (#30484)" (#30539) This reverts commit a78028e54e5c6eb8ba9f7e7e389d7d713e4ffbf3. System tests started to become more unstable --- .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 afc7acd2473..f08fd9383ec 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)" >> $GITHUB_ENV + echo "PARALLEL_TEST_PROCESSORS=$(($(nproc) / 2))" >> $GITHUB_ENV - name: Set QUNIT_PARALLEL for QUnit tests if: matrix.build_type == 'frontend'