Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }})
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }})
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }})
Expand Down
Loading