From 07c794e181f0b5be95a6d419068a7360fe670d56 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Tue, 13 Jul 2021 09:14:35 -0400 Subject: [PATCH] Turn off the non-tsan "tests" jobs. (#8315) The tsan jobs should be doing everything the non-tsan jobs do, and this will save us a bit of CI compute.... --- .github/workflows/tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1092a31a0618e0..ef60ab5dea1702 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -30,7 +30,7 @@ jobs: strategy: matrix: - type: [debug, tsan] + type: [tsan] eventloop: [eventloop_same, eventloop_separate] env: USE_SEPARATE_EVENTLOOP: ${{ matrix.eventloop == 'eventloop_separate' }} @@ -106,7 +106,7 @@ jobs: strategy: matrix: - type: [debug, tsan] + type: [tsan] eventloop: [eventloop_same, eventloop_separate] env: USE_SEPARATE_EVENTLOOP: ${{ matrix.eventloop == 'eventloop_separate' }}