Skip to content

Commit

Permalink
MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Jan 7, 2025
1 parent 6214bf5 commit 8e0119c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/checkCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@ jobs:
cmake --build build -- -j8
fi
- name: Run tests
if: matrix.compiler == 'mingw'
shell: pwsh
run: |
$env:PATH="$env:PATH;C:\msys64\mingw64\bin;C:\msys64\usr\bin;"
ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --parallel 8
- name: Run tests
if: matrix.compiler != 'mingw'
run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --parallel 8

html_documentation_checks:
Expand Down

0 comments on commit 8e0119c

Please sign in to comment.