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 25
25
- name : Set cache version
26
26
run : echo "CACHE_VERSION=pu4Aevoo" >> $GITHUB_ENV
27
27
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
+
28
47
- name : " Setup Haskell"
29
48
uses : haskell-actions/setup@v2
30
49
id : setup-haskell
You can’t perform that action at this time.
0 commit comments