From a03f85c083be5ce78d88c733997d3e0fced73924 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 26 Nov 2024 11:54:34 +0000 Subject: [PATCH] TEMP DEBUG --- .../kubernetes/core/run-quickstart-test-on-kubernetes.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/kubernetes/core/run-quickstart-test-on-kubernetes.sh b/.github/workflows/scripts/kubernetes/core/run-quickstart-test-on-kubernetes.sh index 1c6baa2acb..ae3c2c57d9 100755 --- a/.github/workflows/scripts/kubernetes/core/run-quickstart-test-on-kubernetes.sh +++ b/.github/workflows/scripts/kubernetes/core/run-quickstart-test-on-kubernetes.sh @@ -9,7 +9,7 @@ # * QS_DEBUG_TESTS - Runs the tests with '-Dmaven.failsafe.debug=true' ################################################################################################ # Go into the quickstart directory - +set -x test_status=0 script_directory="${0%/*}" script_directory=$(realpath "${script_directory}") @@ -91,6 +91,10 @@ export image="${root_image_name}:latest" docker tag ${qs_dir} ${image} docker push ${image} +# Debug +docker image ls +docker pull ${image} + ################################################################################################ # Helm install, waiting for the pods to come up helm_set_arguments=" --set ${helm_set_arg_prefix}build.enabled=false --set ${helm_set_arg_prefix}deploy.route.enabled=false --set ${helm_set_arg_prefix}image.name=${root_image_name}" @@ -186,5 +190,5 @@ fi end=$SECONDS duration=$((end - start)) echo "${application} tests run in $(($duration / 60))m$(($duration % 60))s." - +set +x exit ${test_status} \ No newline at end of file