Ctest fix #36
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: ctests | ||
on: | ||
push: | ||
branches: [ main, ctest-fix ] | ||
pull_request: | ||
branches: [ main ] | ||
jobs: | ||
build-others: | ||
name: ${{ matrix.platform.name }} C++${{matrix.config.cxx_version}} | ||
runs-on: ${{ matrix.platform.os }} | ||
env: | ||
WINDOWS_CLANG_PATH: C:\Program Files\LLVM\bin\ | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: | ||
- { name: Windows VS2019, gp: where, ls: dir, os: windows-2019, flags: -DCMAKE_BUILD_TYPE=Debug } | ||
- { name: Windows VS2022, gp: where, ls: dir, os: windows-2022, flags: -DCMAKE_BUILD_TYPE=Debug } | ||
- { name: Windows Clang, gp: where, ls: dir, os: windows-2022, flags: '-DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=${{env.WINDOWS_CLANG_PATH}}clang -DCMAKE_CXX_COMPILER=${{env.WINDOWS_CLANG_PATH}}clang++' } | ||
Check failure on line 22 in .github/workflows/ctests.yml GitHub Actions / ctestsInvalid workflow file
|
||
- { name: Windows GCC, gp: where, ls: dir, os: windows-2022, flags: -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ } | ||
- { name: Linux Clang, gp: which, ls: ls, os: ubuntu-latest, flags: -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ } | ||
- { name: Linux GCC, gp: which, ls: ls, os: ubuntu-latest, flags: -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ } | ||
- { name: MacOS XCode, gp: which, ls: ls, os: macos-latest, flags: -DCMAKE_BUILD_TYPE=Debug } | ||
- { name: MacOS Clang, gp: which, ls: ls, os: macos-latest, flags: -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ } | ||
config: | ||
- { cxx_version: 20 } | ||
- { cxx_version: 23 } | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get Clang and GCC paths | ||
run: ${{matrix.platform.gp}} clang && ${{matrix.platform.gp}} gcc | ||
- name: Config | ||
run: cmake -S tests -B tests ${{matrix.platform.flags}} -DCMAKE_CXX_STANDARD=${{matrix.config.cxx_version}} | ||
- name: Build | ||
run: cmake --build tests --config Debug | ||
- name: View Test Executables | ||
run: cd tests && ${{matrix.platform.ls}} && cd .. | ||
- name: Tests | ||
run: ctest --test-dir tests --build-config Debug --output-on-failure |