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