Test that Mono(Reversed(X)) = Mono(X) #801
This file contains hidden or 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
# Copyright (c) 2021-2025 Morwenn | |
# SPDX-License-Identifier: MIT | |
name: MSVC Builds | |
on: | |
push: | |
paths: | |
- '.github/workflows/build-msvc.yml' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'examples/**' | |
- 'include/**' | |
- 'tests/**' | |
pull_request: | |
paths: | |
- '.github/workflows/build-msvc.yml' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'examples/**' | |
- 'include/**' | |
- 'tests/**' | |
jobs: | |
build: | |
runs-on: windows-2022 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- build_type: Release | |
- build_type: Debug | |
exclude: "stable_t<hybrid_adapter>" | |
- build_type: Debug | |
build_tools: '-T ClangCL' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure CMake | |
shell: pwsh | |
working-directory: ${{runner.workspace}} | |
run: | | |
cmake -H${{github.event.repository.name}} -Bbuild ` | |
-DCMAKE_CONFIGURATION_TYPES=${{matrix.config.build_type}} ` | |
-DCMAKE_BUILD_TYPE=${{matrix.config.build_type}} ` | |
-G"Visual Studio 17 2022" -A x64 ${{matrix.config.build_tools}} ` | |
-DCPPSORT_BUILD_EXAMPLES=ON | |
- name: Build the test suite | |
working-directory: ${{runner.workspace}}/build | |
run: cmake --build . --config ${{matrix.config.build_type}} | |
- name: Run the test suite | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
ctest -C ${{matrix.config.build_type}} ` | |
-E "${{matrix.config.exclude}}" ` | |
--no-tests=error |