From c09ed88553ae6dfad11ada3ef85be02c62684e9e Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Sun, 5 May 2024 06:04:34 +0000 Subject: [PATCH] Exclude `macOS-latest-ghc-{8.10,9.0}` from build matrix. As a temporary workaround for: https://github.com/haskell-actions/setup/issues/77 --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64669e5..12d37e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,13 @@ jobs: - '9.4' - '9.6' - '9.8' + exclude: + # TODO: https://github.com/haskell-actions/setup/issues/77 + # To work around the above issue, we exclude the following versions: + - os: macOS-latest + ghc: '8.10' + - os: macOS-latest + ghc: '9.0' steps: - name: Checkout uses: actions/checkout@v4