From b128d11e9b3de9b807d77d5f7ea751db4664e81f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Tue, 24 Oct 2023 12:58:03 -0300 Subject: [PATCH] fixup! ci: fix GHC 9.4 support on Windows --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f19c516a0..0c8f6f1a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,9 +89,8 @@ jobs: "$SKIP_MSYS" && echo "skip-msys: true" || true } >> "$STACK_ROOT/config.yaml" cat "$STACK_ROOT/config.yaml" - echo "STACK_CONFIG=${STACK_ROOT/#\~/$HOME}/config.yaml" >> "$GITHUB_ENV" env: - STACK_ROOT: ${{ steps.stack.outputs.stack-root || '~/.stack' }} + STACK_ROOT: ${{ steps.stack.outputs.stack-root || '/etc/stack' }} EXTRA_INCLUDE_WIN: ${{ (runner.os == 'Windows' && '- C:/msys64/clang64/include') || '' }} EXTRA_LIB_WIN: ${{ (runner.os == 'Windows' && '- C:/msys64/clang64/lib') || '' }} REPLACE_LINKER_WIN: ${{ (runner.os == 'Windows' && 'true') || 'false' }}