Skip to content

Commit

Permalink
Update build.yml (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-- authored Nov 13, 2020
1 parent 42a6b39 commit ddb8e54
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ jobs:
- name: Test
run: ctest -VV


windows:
windows-msvc:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
Expand All @@ -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"

0 comments on commit ddb8e54

Please sign in to comment.