From c4387af084bcb0f54c18456a75f9c9087d47f242 Mon Sep 17 00:00:00 2001 From: George Menhorn Date: Wed, 29 May 2024 20:13:53 -0400 Subject: [PATCH] crashpad/tests: run only arm64 tests on macOS, skip x86_64 Presently, tests run for macOS/x64_64 hang when run as a gitlab job. As there is still macOS coverage, as arm64, disable the x64_64 tests on macOS, for now, until we have time to properly investigate. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f5fa7ff6..3f467c60 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -117,7 +117,7 @@ jobs: strategy: fail-fast: false matrix: - arch: [arm64, x86_64] + arch: [arm64] generator: ["Unix Makefiles", Ninja] steps: