From f0d0b327f054d9e5659e4eb2019344df9ae5fa6c Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Tue, 15 Jun 2021 11:13:24 -0400 Subject: [PATCH] Reduce iteration count for Darwin test for now. This is failing a lot more in the last few days due to thread synchronization problems. We are addressing those, but in the meantime doing fewer iterations will make this less likely to fail on random unrelated PRs. --- .github/workflows/tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 448fc94fb6f20d..62421399b4b4c1 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -116,7 +116,8 @@ jobs: - name: Run Test Suites timeout-minutes: 5 run: | - scripts/tests/test_suites.sh + # Force 1 iteration for now until we sort out our threading issues. + scripts/tests/test_suites.sh 1 - name: Uploading core files uses: actions/upload-artifact@v2 if: ${{ failure() }}