Demonstrate test failure with real-time violation deliberately introd… #5
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: RADSan Real-Time Safety | |
on: [push] | |
#on: | |
# push: | |
# branches: | |
# - main | |
# - develop | |
# pull_request: | |
# branches: | |
# - main | |
# - develop | |
jobs: | |
build_and_test: | |
name: Check real-time safety with RADSan | |
runs-on: ubuntu-latest | |
container: realtimesanitizer/radsan-clang:latest | |
steps: | |
- name: Install CMake and Git | |
run: apt-get update && apt-get install -y cmake git | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Configure | |
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DRTNEURAL_ENABLE_RADSAN=ON | |
- name: Build | |
run: cmake --build build --config Release --parallel | |
- name: Test | |
run: ctest -C Release --test-dir build --parallel --output-on-failure | |