Skip to content

Commit

Permalink
Add Windows to the actions
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed May 27, 2021
1 parent a18b1c9 commit c0ed169
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/github-actions-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,20 @@ jobs:
- run: ./configure --enable-warning-as-error
- run: make all
- run: make dist
build-win:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: mingw-w64-x86_64-gcc autoconf automake make
- run: autoreconf -i
- run: ./configure --enable-warning-as-error
- run: make all
- run: make dist

0 comments on commit c0ed169

Please sign in to comment.