From: Dave Wallace Date: Tue, 18 Jun 2024 22:05:56 +0000 (-0400) Subject: fix(vpp/hs-test): fix hst debug job to build/test vpp debug image X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=a8c8b03900086b59f48b39899c24a00b4bcf3057;p=ci-management.git fix(vpp/hs-test): fix hst debug job to build/test vpp debug image Change-Id: I1a810f6435e4159114b7814702e2d0161b4bec35 Signed-off-by: Dave Wallace --- diff --git a/jjb/scripts/vpp/debug-hst.sh b/jjb/scripts/vpp/debug-hst.sh index e57ab4c22..9824eb842 100755 --- a/jjb/scripts/vpp/debug-hst.sh +++ b/jjb/scripts/vpp/debug-hst.sh @@ -36,15 +36,15 @@ vpp_make_build_debug() { BUILD_ERROR="FAILED 'make install-ext-deps'" return fi - if ! make UNATTENDED=yes build ; then - BUILD_ERROR="FAILED 'make build'" + if ! make VERBOSE=true VPPSRC="$(pwd)" -C "$HST_DIR" build-debug ; then + BUILD_ERROR="FAILED 'make -C $HST_DIR build-debug'" return fi } hst_test_debug() { - if ! make VERBOSE=true VPPSRC="$(pwd)" -C "$HST_DIR" build-debug test ; then - BUILD_ERROR="FAILED 'make -C $HST_DIR test' (debug)" + if ! make VERBOSE=true VPPSRC="$(pwd)" -C "$HST_DIR" test-debug ; then + BUILD_ERROR="FAILED 'make -C $HST_DIR test-debug'" return fi }