fix/github-actions-windows (#68)

* added windows

* mv

* Update test_windows.yml

* converge

* indent
This commit is contained in:
Dean Eigenmann 2020-07-21 20:12:03 +02:00 committed by GitHub
parent 56389bff77
commit b816843f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

View File

@ -38,3 +38,34 @@ jobs:
- name: Run Tests
run: |
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test
windows:
strategy:
matrix:
env:
- { NPROC: 2 }
- { NPROC: 6 }
runs-on: windows-latest
env: ${{ matrix.env }}
name: windows - ${{ matrix.env.NPROC }} processes
steps:
- uses: eine/setup-msys2@v0
with:
msystem: MSYS
update: true
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% CI_CACHE=NimBinaries update
mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% fetch-dlls
- name: Run Tests
run: |
mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% LOG_LEVEL=TRACE
build\wakunode.exe --help
mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% test