Skip to content

Commit 3ae35b4

Browse files
committed
ci: run check-deps.sh as part of clang-tidy job
1 parent 0aaa129 commit 3ae35b4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ci/test/00_setup_env_native_tidy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export NO_DEPENDS=1
1414
export RUN_UNIT_TESTS=false
1515
export RUN_FUNCTIONAL_TESTS=false
1616
export RUN_FUZZ_TESTS=false
17+
export RUN_CHECK_DEPS=true
1718
export RUN_TIDY=true
1819
export GOAL="install"
1920
export BITCOIN_CONFIG="\

ci/test/03_test_script.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ if [ -n "$USE_VALGRIND" ]; then
137137
"${BASE_ROOT_DIR}/ci/test/wrap-valgrind.sh"
138138
fi
139139

140+
if [ "$RUN_CHECK_DEPS" = "true" ]; then
141+
"${BASE_ROOT_DIR}/contrib/devtools/check-deps.sh" .
142+
fi
143+
140144
if [ "$RUN_UNIT_TESTS" = "true" ]; then
141145
DIR_UNIT_TEST_DATA="${DIR_UNIT_TEST_DATA}" LD_LIBRARY_PATH="${DEPENDS_DIR}/${HOST}/lib" CTEST_OUTPUT_ON_FAILURE=ON ctest "${MAKEJOBS}"
142146
fi

0 commit comments

Comments
 (0)