diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 24a008b..e3ea60c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: run: cmake --build build --parallel - name: Run tests - run: ctest --test-dir build --output-on-failure + run: ctest --test-dir build --output-on-failure --no-tests=error build-arm: name: Cross-compile STM32F4 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index afc5ceb..3d64711 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -30,7 +30,7 @@ jobs: run: cmake --build build --config Release - name: Test - run: ctest --test-dir build --output-on-failure -C Release + run: ctest --test-dir build --output-on-failure --no-tests=error -C Release cross-compile: name: Cross (${{ matrix.arch }}) @@ -126,7 +126,7 @@ jobs: env: ASAN_OPTIONS: detect_leaks=1:halt_on_error=1:abort_on_error=1 UBSAN_OPTIONS: halt_on_error=1:print_stacktrace=1 - run: ctest --test-dir build-san --output-on-failure + run: ctest --test-dir build-san --output-on-failure --no-tests=error report: name: Nightly Report diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7eb45b7..0980421 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: run: | cmake -B build -DEBLDR_BUILD_TESTS=ON -DEBLDR_HARDENING=ON cmake --build build --parallel - ctest --test-dir build --output-on-failure + ctest --test-dir build --output-on-failure --no-tests=error firmware-arm-cortex-m: name: Firmware (${{ matrix.board }}) diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index b9fa0c6..4f44a20 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -27,7 +27,7 @@ jobs: - name: Build run: cmake --build build --config Release - name: Test - run: ctest --test-dir build --output-on-failure -C Release + run: ctest --test-dir build --output-on-failure --no-tests=error -C Release cross-compile: name: Cross (${{ matrix.arch }})