From f21a64090450654240ea435221874cf2fd793ff9 Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Sun, 14 Apr 2024 15:35:58 +0100 Subject: [PATCH] MacOS CI has been flakey for months, taking 2 or 3 attempts on every PR before it finally passes. Disabled it. --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26d352079..286d2dda8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,6 @@ jobs: name: Test runs-on: ${{ matrix.os }} strategy: - max-parallel: 2 fail-fast: false matrix: build: [linux-release, windows-release, osx-release] @@ -21,9 +20,10 @@ jobs: - build: linux-release os: ubuntu-latest config: release - - build: osx-release - os: macos-latest - config: release + # Disabled MacOS CI (2024-04-14) because it's been unstable for months. Try enabling this again in 6 months to see if it's working now. + #- build: osx-release + # os: macos-latest + # config: release - build: windows-release os: windows-2019 config: release