forked from danmar/cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI-mingw.yml: use pre-installed MinGW / also use
lld
and ccache
f…
…or faster builds (danmar#4400) This used to be one of the longest running jobs because of the slow setup and linking. Now it will take only ~2 minutes if everything is cached with half the time taken up by the tests.
- Loading branch information
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,27 +18,55 @@ permissions: | |
|
||
defaults: | ||
run: | ||
shell: cmd | ||
shell: msys2 {0} | ||
|
||
jobs: | ||
build_mingw: | ||
strategy: | ||
matrix: | ||
os: [windows-2019] # fails to download with "windows-2022" | ||
arch: [x64] # TODO: fix x86 build? | ||
# the MinGW installation in windows-2019 is supposed to be 8.1 but it is 12.2 | ||
# the MinGW installation in windows-2022 is not including all necessary packages by default, so just use the older image instead - package versions are he same | ||
os: [windows-2019] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up MinGW | ||
uses: egor-tensin/setup-mingw@v2 | ||
- name: Set up MSYS2 | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
platform: ${{ matrix.arch }} | ||
release: false # use pre-installed | ||
install: >- | ||
mingw-w64-x86_64-lld | ||
mingw-w64-x86_64-ccache | ||
# 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. | ||
- name: Build all and run test | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} | ||
|
||
- 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 | ||
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 | ||
env: | ||
LDFLAGS: -fuse-ld=lld # use lld for faster linking | ||
|
||
- name: Run test | ||
run: | | ||
mingw32-make VERBOSE=1 -j2 check | ||
export PATH="/mingw64/lib/ccache/bin:$PATH" | ||
# set RDYNAMIC to work around broken MinGW detection | ||
make VERBOSE=1 RDYNAMIC=-lshlwapi -j2 check | ||
env: | ||
LDFLAGS: -fuse-ld=lld # use lld for faster linking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters