Skip to content

Commit

Permalink
install llvm@12
Browse files Browse the repository at this point in the history
  • Loading branch information
BebeSparkelSparkel committed Jul 8, 2024
1 parent 39cc008 commit 2be70c3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
#- ubuntu-latest
- macos-latest
#- windows-latest
os: [ubuntu-latest, macos-latest, windows-latest]
resolver:
# Missing some packages now
#- "--resolver nightly"
Expand All @@ -34,6 +31,12 @@ jobs:
steps:
- name: Clone project
uses: actions/checkout@v2
- name: Install LLVM 12
run: |
brew install llvm@12
echo "$(brew --prefix)/opt/llvm/bin" >> "${GITHUB_PATH}"
echo LDFLAGS="-L$(brew --prefix)/opt/llvm/lib" >> "${GITHUB_ENV}"
echo CPPFLAGS="-I$(brew --prefix)/opt/llvm/include" >> "${GITHUB_ENV}"
- name: Setup Haskell
uses: haskell-actions/[email protected]
with:
Expand Down

0 comments on commit 2be70c3

Please sign in to comment.