Skip to content

Commit eab43fc

Browse files
committed
sdadsd
1 parent fcf4f4b commit eab43fc

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/CI-mingw.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,16 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v2
2525

26+
- name: Set up MSYS2
27+
uses: msys2/setup-msys2@v2
28+
with:
29+
release: false # use pre-installed
30+
2631
# MinGW will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries.
2732
- name: Build all and run test
2833
run: |
2934
:: set the PATH so the MinGW DLLs are being found
30-
set PATH=%PATH%;C:\msys64\mingw64\bin
35+
:: set PATH=%PATH%;C:\msys64\mingw64\bin
3136
mingw32-make -j2 check
37+
env:
38+
LDFLAGS: -fuse-ld=lld # use lld for much faster linking

0 commit comments

Comments
 (0)