Skip to content

Commit 4c813c0

Browse files
authored
Merge pull request #216 from haskell/llvm-ci
Fix darwin runners
2 parents 8702182 + 0403d50 commit 4c813c0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ jobs:
134134

135135
- name: Run build
136136
run: |
137-
bash .github/scripts/brew.sh git coreutils llvm@11 autoconf automake
138-
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@11/bin:$PATH"
139-
export CC="$HOME/.brew/opt/llvm@11/bin/clang"
140-
export CXX="$HOME/.brew/opt/llvm@11/bin/clang++"
137+
bash .github/scripts/brew.sh git coreutils llvm@13 autoconf automake
138+
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@13/bin:$PATH"
139+
export CC="$HOME/.brew/opt/llvm@13/bin/clang"
140+
export CXX="$HOME/.brew/opt/llvm@13/bin/clang++"
141141
export LD=ld
142-
export AR="$HOME/.brew/opt/llvm@11/bin/llvm-ar"
143-
export RANLIB="$HOME/.brew/opt/llvm@11/bin/llvm-ranlib"
142+
export AR="$HOME/.brew/opt/llvm@13/bin/llvm-ar"
143+
export RANLIB="$HOME/.brew/opt/llvm@13/bin/llvm-ranlib"
144144
. .github/scripts/env.sh
145145
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 BOOTSTRAP_HASKELL_GHC_VERSION=${{ matrix.ghc }} BOOTSTRAP_HASKELL_ADJUST_BASHRC=yes sh
146146
cabal test

0 commit comments

Comments
 (0)