From f730963d1698d93e15a4c37c451b11d32731c793 Mon Sep 17 00:00:00 2001 From: Victor Nova Date: Tue, 3 May 2022 13:59:21 -0700 Subject: [PATCH] workaround for potentially buggy threading in Mono https://github.com/mono/mono/issues/21466 --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 11d8699e4..284658620 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,6 +66,8 @@ jobs: - name: Embedding tests run: dotnet test --runtime any-${{ matrix.platform }} --logger "console;verbosity=detailed" src/embed_tests/ + env: + MONO_THREADS_SUSPEND: preemptive # https://github.com/mono/mono/issues/21466 - name: Python Tests (Mono) if: ${{ matrix.os != 'windows' }}