Skip to content

Commit c0ed169

Browse files
committed
Add Windows to the actions
1 parent a18b1c9 commit c0ed169

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/github-actions-build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,20 @@ jobs:
2424
- run: ./configure --enable-warning-as-error
2525
- run: make all
2626
- run: make dist
27+
build-win:
28+
runs-on: windows-latest
29+
defaults:
30+
run:
31+
shell: msys2 {0}
32+
steps:
33+
- uses: actions/checkout@v2
34+
- uses: msys2/setup-msys2@v2
35+
with:
36+
msystem: MINGW64
37+
update: true
38+
install: mingw-w64-x86_64-gcc autoconf automake make
39+
- run: autoreconf -i
40+
- run: ./configure --enable-warning-as-error
41+
- run: make all
42+
- run: make dist
2743

0 commit comments

Comments
 (0)