mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-14 12:03:16 +00:00
Merge pull request #55 from yarrick/win-ci
Add github CI action for Windows
This commit is contained in:
commit
348aee839a
25
.github/workflows/windows.yml
vendored
Normal file
25
.github/workflows/windows.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: windows
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: windows-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: msys2 {0}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: msys2/setup-msys2@v2
|
||||||
|
with:
|
||||||
|
msystem: MINGW64
|
||||||
|
update: false
|
||||||
|
install: git make mingw-w64-x86_64-toolchain mingw-w64-x86_64-zlib
|
||||||
|
- name: make
|
||||||
|
run: make TARGETOS=windows32
|
Loading…
Reference in a new issue