Skip to content

Commit

Permalink
[ci, SiVal] Make the nightly job to run al tests even with errors
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Reis <[email protected]>
  • Loading branch information
engdoreis committed Nov 4, 2024
1 parent 1453b4e commit 24c0a3f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,21 @@ jobs:
run: |
module load xilinx/vivado
bazel_tests="$(mktemp)"
./bazelisk.sh query 'attr("tags", "[\[ ]cw310_sival[,\]]", tests(//...))' \
./bazelisk.sh query 'attr("tags", "[\[ ]cw310_sival[,\]]", tests(//sw/device/...))' \
| grep -v examples \
| grep -v third_party \
| grep -v penetrationtests \
> "$bazel_tests"
./bazelisk.sh test --build_tests_only --target_pattern_file="$bazel_tests"
./bazelisk.sh test --build_tests_only --target_pattern_file="$bazel_tests" || true
- name: Run tests after ROM_EXT boot stage
run: |
module load xilinx/vivado
bazel_tests="$(mktemp)"
./bazelisk.sh query 'attr("tags", "[\[ ]cw310_sival_rom_ext[,\]]", tests(//...))' \
./bazelisk.sh query 'attr("tags", "[\[ ]cw310_sival_rom_ext[,\]]", tests(//sw/device/...))' \
| grep -v examples \
| grep -v third_party \
| grep -v penetrationtests \
> "$bazel_tests"
./bazelisk.sh test --build_tests_only --target_pattern_file="$bazel_tests"
./bazelisk.sh test --build_tests_only --target_pattern_file="$bazel_tests" || true
- name: Publish bazel test results
if: success() || failure()
Expand Down

0 comments on commit 24c0a3f

Please sign in to comment.