Update build.yml (#146)

This commit is contained in:
Kuba Podgórski 2020-11-13 11:21:10 +01:00 committed by GitHub
parent 42a6b39526
commit ddb8e54174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,8 +35,7 @@ jobs:
- name: Test
run: ctest -VV
windows:
windows-msvc:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
@ -48,3 +47,16 @@ jobs:
tree /a /f .
- name: Test
run: ctest -VV -C "Debug"
windows-mingw:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
- name: Configure
run: cmake -G "MinGW Makefiles" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE .
- name: Build
run: |
mingw32-make
tree /a /f .
- name: Test
run: ctest -VV -C "Debug"