File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 2525 - name : Set cache version
2626 run : echo "CACHE_VERSION=pu4Aevoo" >> $GITHUB_ENV
2727
28+ - name : Install LLVM (macOS)
29+ if : runner.os == 'macOS' && matrix.ghc == '8.10'
30+ run : |
31+ brew install llvm@13
32+ echo "LLVM_CONFIG=$(brew --prefix llvm@13)/bin/llvm-config" >> $GITHUB_ENV
33+ echo "$(brew --prefix llvm@13)/bin" >> $GITHUB_PATH
34+
35+ - name : Verify LLVM installation
36+ if : runner.os == 'macOS' && matrix.ghc == '8.10'
37+ run : |
38+ llvm-config --version
39+ opt --version
40+
41+ - name : Print environment variables
42+ if : runner.os == 'macOS' && matrix.ghc == '8.10'
43+ run : |
44+ echo "PATH = $PATH"
45+ echo "LLVM_CONFIG = $LLVM_CONFIG"
46+
2847 - name : " Setup Haskell"
2948 uses : haskell-actions/setup@v2
3049 id : setup-haskell
You can’t perform that action at this time.
0 commit comments