File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ variables:
1414 GIT_SUBMODULE_UPDATE_FLAGS : --jobs `nproc`
1515 IREE_HOST_BIN_DIR : " /opt/iree_compiler/bin"
1616 RISCV_TOOLCHAIN_ROOT : " /opt/toolchain_iree_rv32imf"
17- RENODE_PATH : " /opt/renode "
17+ RENODE_PATH : " /usr/bin "
1818
1919stages :
2020 - lint
@@ -93,6 +93,7 @@ unit_tests:
9393 before_script :
9494 - *minimal_build_prepare
9595 script :
96+ - cmake --build build/build-riscv --target unit-tests
9697 - cmake --build build/build-riscv --target unit-tests-coverage
9798 artifacts :
9899 paths :
Original file line number Diff line number Diff line change 3737 run : |
3838 ./.github/scripts/readme-tests.sh
3939 - name : Upload artifacts
40- uses : actions/upload-artifact@v3
40+ uses : actions/upload-artifact@v4
4141 with :
4242 name : gh-page
4343 path : report-html
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ add_custom_target(unit-tests
117117 WORKING_DIRECTORY ${UNIT_TESTS_DIR}
118118)
119119add_custom_target (unit-tests-coverage
120- COMMAND bash -c "ceedling gcov:all utils:gcov"
120+ COMMAND bash -c "ceedling gcov:all || exit 0"
121+ COMMAND bash -c "ceedling utils:gcov"
121122 USES_TERMINAL
122123 VERBATIM
123124 USES_TERMINAL
You can’t perform that action at this time.
0 commit comments