Added back .(Always)Return<ref-type>(val) to force capture value as r… #192
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
| name: CI Windows/MSVC | |
| on: | |
| push: | |
| pull_request: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| name: ${{ matrix.config.name }} | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - { | |
| name: "Windows 2022 MSVC 2022 Win32", | |
| os: windows-2022, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32" | |
| } | |
| - { | |
| name: "Windows 2022 MSVC 2022 x64", | |
| os: windows-2022, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64" | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 Win32 C++11", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32", | |
| cxx_standard: 11 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 x64 C++11", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64", | |
| cxx_standard: 11 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 Win32 C++14", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32", | |
| cxx_standard: 14 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 x64 C++14", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64", | |
| cxx_standard: 14 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 Win32 C++17", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32", | |
| cxx_standard: 17 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 x64 C++17", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64", | |
| cxx_standard: 17 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 Win32 C++20", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32", | |
| cxx_standard: 20 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 x64 C++20", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64", | |
| cxx_standard: 20 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 Win32 C++23", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "Win32", | |
| cxx_standard: 23 | |
| } | |
| - { | |
| name: "Windows 2025 MSVC 2022 x64 C++23", | |
| os: windows-2025, | |
| build_type: Debug, | |
| generator: "Visual Studio 17 2022", | |
| architecture: "x64", | |
| cxx_standard: 23 | |
| } | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build project | |
| run: | | |
| cmake -S . -B build \ | |
| -G "${{ matrix.config.generator }}" \ | |
| -A ${{ matrix.config.architecture }} \ | |
| -DENABLE_TESTING=ON \ | |
| -DWARNINGS_AS_ERRORS_FOR_TESTS=ON \ | |
| -DOVERRIDE_CXX_STANDARD_FOR_TESTS=${{ matrix.config.cxx_standard }} | |
| cmake --build build --config ${{ matrix.config.build_type }} -j | |
| - name: Run tests | |
| run: | | |
| ctest --test-dir build/ --verbose -C ${{ matrix.config.build_type }} |