From a8c8b03900086b59f48b39899c24a00b4bcf3057 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Tue, 18 Jun 2024 18:05:56 -0400 Subject: [PATCH] fix(vpp/hs-test): fix hst debug job to build/test vpp debug image Change-Id: I1a810f6435e4159114b7814702e2d0161b4bec35 Signed-off-by: Dave Wallace --- jjb/scripts/vpp/debug-hst.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 } -- 2.16.6