Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/checkCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ jobs:
fi
- name: Run tests
run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --verbose
- name: Install
run: |
if [ "${{ matrix.compiler }}" == "msvc" ]; then
cmake --build build --target install --config ${{ matrix.configuration }}
else
cmake --build build --target install
fi

external_c_checks_cmake_cygwin:
name: external_c_checks_cmake_windows-cygwin
Expand Down Expand Up @@ -134,6 +141,11 @@ jobs:
export PATH=/usr/bin:$PATH
ctest --no-tests=error --test-dir build --build-config Debug --verbose
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
- name: Install
run: |
export PATH=/usr/bin:$PATH
cmake --build build --target install
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'

html_documentation_checks:
timeout-minutes: 5
Expand Down