From abb5007a67f22c1eada38b7e66dca4e9c74116de Mon Sep 17 00:00:00 2001 From: William Rusnack Date: Wed, 10 Jul 2024 09:12:45 -0400 Subject: [PATCH] -I to extra-include-dirs --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 964f7782..82a760f8 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,8 +30,8 @@ jobs: brew install llvm@12 echo "/opt/homebrew/opt/llvm@12/bin" >> "${GITHUB_PATH}" echo extraLibDirs="--extra-lib-dirs /opt/homebrew/opt/llvm@12/lib" >> "${GITHUB_ENV}" - echo extraIncludeDirs="--extra-include-dirs /opt/homebrew/opt/llvm@12/include" >> "${GITHUB_ENV}" - echo ghcOptions="--ghc-options $(pkg-config --cflags libffi)" >> ${GITHUB_ENV} + echo extraIncludeDirsLLVM="--extra-include-dirs /opt/homebrew/opt/llvm@12/include" >> "${GITHUB_ENV}" + echo extraIncludeDirsFFI="--extra-include-dirs $(pkg-config --cflags libffi)" >> ${GITHUB_ENV} - name: Setup Haskell if: ${{ contains( matrix.os , 'macos' ) }} uses: haskell-actions/setup@v2.7