From fd4b00d0baa81e4ac550c9c1ad4c802782ec9e64 Mon Sep 17 00:00:00 2001 From: fwcd Date: Tue, 13 Feb 2024 02:54:47 +0100 Subject: [PATCH] Exclude macOS 13/Swift 5.8 combo from CI --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 475956ac..483b42d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,11 @@ jobs: matrix: os: ['ubuntu-latest', 'macos-13'] swift: ['5.8', '5.9'] + exclude: + # Compiler crashes due to a bug: https://github.com/fwcd/d2/actions/runs/7880565521/job/21502800704 + # TODO: Remove this once we bump D2's minimum Swift version to 5.9+ + - os: 'macos-13' + swift: '5.8' runs-on: ${{ matrix.os }} steps: