From 5eeea0a226aae9d52e948eb3778fd0312688ce7b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 24 Dec 2022 14:52:52 -0800 Subject: [PATCH] Fix GHC 9.2 version in excludes --- .github/workflows/Cabal.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Cabal.yml b/.github/workflows/Cabal.yml index d03353d58..3cb261500 100644 --- a/.github/workflows/Cabal.yml +++ b/.github/workflows/Cabal.yml @@ -49,12 +49,12 @@ jobs: cabal-cache-v2-${{ runner.os }}- - name: Build run: cabal v2-build $CONFIG - if: matrix.os != 'macOS-latest' || matrix.ghc != '9.2.2' + if: matrix.os != 'macOS-latest' || matrix.ghc != '9.2.5' # See https://gitlab.haskell.org/ghc/ghc/-/issues/20592#note_391266 for the problem and workaround. # This problem is fixed in GHC 9.2.3. - name: Build with a workaround for macOS run: C_INCLUDE_PATH="`xcrun --show-sdk-path`/usr/include/ffi" cabal v2-build $CONFIG - if: matrix.os == 'macOS-latest' && matrix.ghc == '9.2.2' + if: matrix.os == 'macOS-latest' && matrix.ghc == '9.2.5' - name: Run tests run: cabal v2-test $CONFIG - name: Run benchmarks