From acc9fbbf1dfb41f192bb283d6f0644e178b77382 Mon Sep 17 00:00:00 2001 From: Baruch Sterin Date: Tue, 22 Nov 2022 03:29:55 +0200 Subject: [PATCH] Workaround for a crash when compiling on macOS in GitHub Actions. Reported the bug to Apple and return to the previous version of the maOS image (macos-11). --- .github/workflows/build-posix-cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-posix-cmake.yml b/.github/workflows/build-posix-cmake.yml index ea31fe0bc..def198107 100644 --- a/.github/workflows/build-posix-cmake.yml +++ b/.github/workflows/build-posix-cmake.yml @@ -5,7 +5,7 @@ jobs: build-posix: strategy: matrix: - os: [macos-latest, ubuntu-latest] + os: [macos-11, ubuntu-latest] use_namespace: [false, true] runs-on: ${{ matrix.os }}