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 a2e6b4b commit fed8fc3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ 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 @@ -31,6 +34,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 fed8fc3

Please sign in to comment.