From 9368f55255fefc6dbe3eb3136c2bd04b68af41eb Mon Sep 17 00:00:00 2001 From: Marcin Szamotulski Date: Wed, 8 Jan 2025 09:13:20 +0100 Subject: [PATCH] gha: use llvm@17 on MacOS --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 8fc201a1..e2cce4cf 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -32,9 +32,9 @@ jobs: - name: Install LLVM (macOS) if: runner.os == 'macOS' && matrix.ghc == '8.10' run: | - brew install llvm@13 + brew install llvm@17 echo "LLVM_CONFIG=$(brew --prefix llvm@13)/bin/llvm-config" >> $GITHUB_ENV - echo "$(brew --prefix llvm@13)/bin" >> $GITHUB_PATH + echo "$(brew --prefix llvm@17)/bin" >> $GITHUB_PATH - name: Verify LLVM installation if: runner.os == 'macOS' && matrix.ghc == '8.10'