DetTrace: add bring-up trace validation and firmware telemetry workflows #2
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: C++ Replay Regression | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| cpp-replay-regression: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Configure CMake | |
| run: cmake -S . -B build | |
| - name: Build replay tools | |
| run: cmake --build build --config Release | |
| - name: Run C++ replay regression tests | |
| run: ctest --test-dir build --output-on-failure |