From 523ccd684caf1265885e5f006a42c449d4f416ae Mon Sep 17 00:00:00 2001 From: William Rusnack Date: Mon, 8 Jul 2024 10:34:04 -0400 Subject: [PATCH] fixup! install llvm@12 --- .github/workflows/tests.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0f0e5aa2..92dd0b45 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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" @@ -34,12 +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: 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/setup@v2.7.5 with: