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
# 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.
51
-
- name: Build all and run test
50
+
- name: Build cppcheck
51
+
run: |
52
+
export PATH="/mingw64/lib/ccache/bin:$PATH"
53
+
# set RDYNAMIC to work around broken MinGW detection
54
+
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 cppcheck
55
+
env:
56
+
LDFLAGS: -fuse-ld=lld # use lld for faster linking
57
+
58
+
- name: Build test
59
+
run: |
60
+
export PATH="/mingw64/lib/ccache/bin:$PATH"
61
+
# set RDYNAMIC to work around broken MinGW detection
62
+
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 testrunner
63
+
env:
64
+
LDFLAGS: -fuse-ld=lld # use lld for faster linking
65
+
66
+
- name: Run test
52
67
run: |
53
68
export PATH="/mingw64/lib/ccache/bin:$PATH"
54
69
# set RDYNAMIC to work around broken MinGW detection
0 commit comments