From b96869d5fb7702f74b8191d3fb0108d68ff0df51 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 26 Jan 2023 14:37:47 +0000 Subject: [PATCH] DEV: Disable parallel system specs in GitHub actions (#20023) We have some flakiness which needs to be resolved. Followup to e717529d8098b685a06748e41581e1f18a5afaf4 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 69a8517b748..97edbf9ba86 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -179,11 +179,11 @@ jobs: - name: Core System Tests if: matrix.build_type == 'system' && matrix.target == 'core' - run: PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose spec/system + run: PARALLEL_TEST_PROCESSORS=1 bin/turbo_rspec --verbose spec/system - name: Plugin System Tests if: matrix.build_type == 'system' && matrix.target == 'plugins' - run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose plugins/*/spec/system + run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=1 bin/turbo_rspec --verbose plugins/*/spec/system - name: Upload failed system test screenshots uses: actions/upload-artifact@v3