Revert "DEV: Run one system test process per CPU core (#30484)" (#30539)

This reverts commit a78028e54e.

System tests started to become more unstable
This commit is contained in:
Alan Guo Xiang Tan 2025-01-06 10:35:45 +08:00 committed by GitHub
parent 407fa69778
commit c5a2ac3dec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,7 +72,7 @@ jobs:
- name: Set PARALLEL_TEST_PROCESSORS for system tests - name: Set PARALLEL_TEST_PROCESSORS for system tests
if: matrix.build_type == 'system' if: matrix.build_type == 'system'
run: | run: |
echo "PARALLEL_TEST_PROCESSORS=$(nproc)" >> $GITHUB_ENV echo "PARALLEL_TEST_PROCESSORS=$(($(nproc) / 2))" >> $GITHUB_ENV
- name: Set QUNIT_PARALLEL for QUnit tests - name: Set QUNIT_PARALLEL for QUnit tests
if: matrix.build_type == 'frontend' if: matrix.build_type == 'frontend'