Add build type for Windows

This commit is contained in:
Bronek Kozicki
2025-11-07 14:58:22 +00:00
parent 609a181bf4
commit 64521543a2

View File

@@ -161,9 +161,13 @@ jobs:
- name: Run the separate tests
if: ${{ !inputs.build_only }}
working-directory: ${{ inputs.build_dir }}
env:
BUILD_TYPE: ${{ inputs.build_type }}
shell: bash
run: |
ctest --output-on-failure
ctest \
--output-on-failure \
-C "${BUILD_TYPE}"
- name: Prepare coverage report
if: ${{ !inputs.build_only && env.ENABLED_COVERAGE == 'true' }}