Default to failure in JUnit status if status is unknown #30
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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| compiler: [native, llvm] | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| exclude: | |
| - os: macos-latest | |
| compiler: native | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install CMake | |
| uses: lukka/get-cmake@latest | |
| - name: Install LLVM and Clang | |
| uses: KyleMayes/install-llvm-action@v2 | |
| with: | |
| version: "20" | |
| env: true | |
| if: ${{ matrix.compiler == 'llvm'}} | |
| - name: Configure for native compiler | |
| run: cmake -B build -DCPPSPEC_BUILD_TESTS=YES | |
| if: ${{ matrix.compiler == 'native'}} | |
| - name: Configure for non-native compiler | |
| run: cmake -B build -G Ninja -DCPPSPEC_BUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX" | |
| if: ${{ matrix.compiler != 'native'}} | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Test | |
| run: ctest --test-dir build --build-config Release |