Skip to content

Commit

Permalink
CI: Use Clang64 tools on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed May 21, 2024
1 parent 749d805 commit 645bb02
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,16 @@ jobs:
uses: msys2/setup-msys2@v2
with:
update: true
msystem: MINGW64
# NB: Use CLANG64 here, not MINGW64. GHC 9.4 and later bundle a
# Clang-based C toolchain on Windows, and the FFI-related tests work
# best when the DLLs are compiled with Clang as well.
msystem: CLANG64
# These are needed for the ffi tests on Windows
install: |
diffutils
make
mingw-w64-x86_64-gcc
mingw-w64-x86_64-gmp
mingw-w64-clang-x86_64-gcc
mingw-w64-clang-x86_64-gmp
if: matrix.suite == 'test-lib' && runner.os == 'Windows'

- if: matrix.suite == 'rpc'
Expand Down

0 comments on commit 645bb02

Please sign in to comment.