Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/CI-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,20 @@ jobs:
- name: Build cppcheck
run: |
export PATH="/mingw64/lib/ccache/bin:$PATH"
# set RDYNAMIC to work around broken MinGW detection
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 cppcheck
make VERBOSE=1 -j2 cppcheck
env:
LDFLAGS: -fuse-ld=lld # use lld for faster linking

- name: Build test
run: |
export PATH="/mingw64/lib/ccache/bin:$PATH"
# set RDYNAMIC to work around broken MinGW detection
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 testrunner
make VERBOSE=1 -j2 testrunner
env:
LDFLAGS: -fuse-ld=lld # use lld for faster linking

- name: Run test
run: |
export PATH="/mingw64/lib/ccache/bin:$PATH"
# set RDYNAMIC to work around broken MinGW detection
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 check
make VERBOSE=1 -j2 check
env:
LDFLAGS: -fuse-ld=lld # use lld for faster linking
170 changes: 0 additions & 170 deletions .github/workflows/CI-unixish-docker.yml

This file was deleted.

Loading