⬆️ Bump libs/Catch2 from 4acc518
to b593be2
#155
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows CI | |
on: | |
push: | |
branches: [ 'main' ] | |
paths: | |
- '**/*.hpp' | |
- '**/*.cpp' | |
- '**/*.cmake' | |
- '**/CMakeLists.txt' | |
- 'libs/**' | |
- '.github/workflows/windows.yml' | |
pull_request: | |
branches: [ 'main' ] | |
paths: | |
- '**/*.hpp' | |
- '**/*.cpp' | |
- '**/*.cmake' | |
- '**/CMakeLists.txt' | |
- 'libs/**' | |
- '.github/workflows/windows.yml' | |
merge_group: | |
jobs: | |
build_and_test: | |
strategy: | |
matrix: | |
os: [ windows-2019, windows-2022 ] | |
toolset: [ v142, v143, ClangCL ] | |
build_type: [ Debug, Release ] | |
include: | |
- os: windows-2019 | |
env: 'Visual Studio 16 2019' | |
boost_platform: 2019 | |
- os: windows-2022 | |
env: 'Visual Studio 17 2022' | |
boost_platform: 2022 | |
exclude: | |
- os: windows-2019 | |
toolset: v143 | |
- os: windows-2022 | |
toolset: v142 | |
name: ${{matrix.os}} with ${{matrix.env}} and ${{matrix.toolset}} toolset (${{matrix.build_type}} mode) | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Boost | |
uses: MarkusJx/[email protected] | |
id: install-boost | |
with: | |
boost_version: 1.80.0 | |
platform_version: ${{matrix.boost_platform}} | |
cache: true | |
toolset: msvc | |
arch: x86 | |
- name: Setup ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: '${{matrix.os}}-${{matrix.toolset}}-${{matrix.build_type}}' | |
variant: ccache | |
save: true | |
max-size: 10G | |
- name: Create Build Environment | |
run: cmake -E make_directory ${{github.workspace}}\build | |
- name: Configure CMake | |
working-directory: ${{github.workspace}}\build | |
run: > | |
cmake ${{github.workspace}} -G "${{matrix.env}}" -A x64 -T ${{matrix.toolset}} | |
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} | |
-DQUICKSIM_TEST=ON | |
env: | |
BOOST_ROOT: ${{steps.install-boost.outputs.BOOST_ROOT}} | |
- name: Build quicksim-siqad-plugin | |
working-directory: ${{github.workspace}}\build | |
run: cmake --build . --config ${{matrix.build_type}} -j2 | |
- name: Test | |
working-directory: ${{github.workspace}}\build | |
# Execute tests defined by the CMake configuration. | |
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
run: ctest -C ${{matrix.build_type}} --verbose |