Skip to content

Commit

Permalink
Fix the build CI workflow on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbassett-tibco committed Jul 12, 2022
1 parent a159b90 commit 09e3837
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest']
include:
- operating-system: 'windows-latest'
ctest-args: '-C Debug'
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand All @@ -22,5 +25,5 @@ jobs:
- name: Test
run: |
cd cmake-build-${{ matrix.operating-system }}
ctest --output-on-failure
ctest --output-on-failure ${{ matrix.ctest-args }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@
/.idea
/cmake-*

# Miscellaneous files
*.swp

0 comments on commit 09e3837

Please sign in to comment.