You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/CI-mingw.yml
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,16 @@ jobs:
23
23
steps:
24
24
- uses: actions/checkout@v2
25
25
26
+
- name: Set up MSYS2
27
+
uses: msys2/setup-msys2@v2
28
+
with:
29
+
release: false # use pre-installed
30
+
26
31
# 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.
27
32
- name: Build all and run test
28
33
run: |
29
34
:: 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
31
36
mingw32-make -j2 check
37
+
env:
38
+
LDFLAGS: -fuse-ld=lld # use lld for much faster linking
0 commit comments