Skip to content

Commit e77ff24

Browse files
committed
Try setup CCI for windows
1 parent 142c224 commit e77ff24

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ccpp.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,20 @@ jobs:
1515
run: make
1616
- name: make check
1717
run: make check
18+
19+
build_windows_mingw:
20+
strategy:
21+
matrix:
22+
platform: [windows-latest]
23+
runs-on: ${{ matrix.platform }}
24+
25+
steps:
26+
- uses: actions/checkout@v1
27+
- name: Install MINGW
28+
run: choco install mingw --no-progress
29+
- name: make
30+
shell: bash
31+
run: mingw32-make CC="gcc -std=c11"
32+
- name: make check
33+
shell: bash
34+
run: mingw32-make CC="gcc -std=c11" check

0 commit comments

Comments
 (0)