-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0924fc9
commit ce66f88
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,26 @@ jobs: | |
${{ steps.setup-haskell-cabal.outputs.cabal-store }} | ||
${{ env.cabal-build-dir }} | ||
- name: Tools | ||
if: matrix.os == 'macOS-latest' | ||
run: > | ||
brew install llvm@13 | ||
export PATH="/opt/homebrew/opt/llvm@13/bin:$PATH" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
export LDFLAGS="-L/opt/homebrew/opt/llvm@13/lib" | ||
This comment has been minimized.
Sorry, something went wrong.
andreasabel
|
||
export CPPFLAGS="-I/opt/homebrew/opt/llvm@13/include" | ||
echo 'export PATH="/opt/homebrew/opt/llvm@13/bin:$PATH"' | ||
>> /Users/runner/.bash_profile | ||
echo 'export LDFLAGS="-L/opt/homebrew/opt/llvm@13/lib"' | ||
>> /Users/runner/.bash_profile | ||
echo 'export CPPFLAGS="-I/opt/homebrew/opt/llvm@13/include"' | ||
>> /Users/runner/.bash_profile | ||
- name: Dependencies | ||
run: > | ||
cabal build all | ||
|
To extend the PATH, append the file $GITHUB_PATH, e.g.