diff options
author | Ryan Ofsky <ryan@ofsky.org> | 2024-07-25 09:07:20 -0400 |
---|---|---|
committer | Ryan Ofsky <ryan@ofsky.org> | 2024-09-04 15:30:58 -0400 |
commit | 3ae35b427fe59bc9ab24d07c1adb46faa702de20 (patch) | |
tree | d1253db467b8cfd7aca8de5a68dccd01d575489f /ci/test/03_test_script.sh | |
parent | 0aaa1298a08f898318916661f2317b2e755206e6 (diff) |
ci: run check-deps.sh as part of clang-tidy job
Diffstat (limited to 'ci/test/03_test_script.sh')
-rwxr-xr-x | ci/test/03_test_script.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/test/03_test_script.sh b/ci/test/03_test_script.sh index 7fca724a77..4e884df17a 100755 --- a/ci/test/03_test_script.sh +++ b/ci/test/03_test_script.sh @@ -137,6 +137,10 @@ if [ -n "$USE_VALGRIND" ]; then "${BASE_ROOT_DIR}/ci/test/wrap-valgrind.sh" fi +if [ "$RUN_CHECK_DEPS" = "true" ]; then + "${BASE_ROOT_DIR}/contrib/devtools/check-deps.sh" . +fi + if [ "$RUN_UNIT_TESTS" = "true" ]; then DIR_UNIT_TEST_DATA="${DIR_UNIT_TEST_DATA}" LD_LIBRARY_PATH="${DEPENDS_DIR}/${HOST}/lib" CTEST_OUTPUT_ON_FAILURE=ON ctest "${MAKEJOBS}" fi |