forked from danmar/cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (28 loc) · 879 Bytes
/
CI-mingw.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Some convenient links:
# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md
#
name: CI-mingw
on: [push,pull_request]
permissions:
contents: read
defaults:
run:
shell: cmd
jobs:
build_mingw:
strategy:
matrix:
os: [windows-2019] # fails to download with "windows-2022"
arch: [x64] # TODO: fix x86 build?
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
with:
platform: ${{ matrix.arch }}
# 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
run: |
mingw32-make VERBOSE=1 -j2 check