diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2024-06-18 18:05:56 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-06-18 18:05:56 -0400 |
commit | a8c8b03900086b59f48b39899c24a00b4bcf3057 (patch) | |
tree | 90e4429d31a3095f58dac858e8a90f163e8004b5 /jjb | |
parent | f6fae9cba8a19b8ccf7a95ba2039fcb64dfb0fd8 (diff) |
fix(vpp/hs-test): fix hst debug job to build/test vpp debug image
Change-Id: I1a810f6435e4159114b7814702e2d0161b4bec35
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/scripts/vpp/debug-hst.sh | 8 |
1 files 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 } |