From e8ec090f1d76f5a2b829a26bb78fb43a45a3dba2 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 20 Apr 2023 16:58:13 -0600 Subject: [PATCH] Add more debugging --- tests/smoke-test/run-smoke-test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/smoke-test/run-smoke-test.sh b/tests/smoke-test/run-smoke-test.sh index d6226b29..0ee258ce 100755 --- a/tests/smoke-test/run-smoke-test.sh +++ b/tests/smoke-test/run-smoke-test.sh @@ -3,6 +3,9 @@ set -e if [ -n "$CERC_SCRIPT_DEBUG" ]; then set -x fi +# Dump environment variables for debugging +echo "Environment variables:" +env # Basic simple test of stack-orchestrator functionality echo "Running stack-orchestrator smoke test" # Bit of a hack, test the most recent package @@ -25,7 +28,7 @@ $TEST_TARGET_SO --stack test build-containers # Build one example containers $TEST_TARGET_SO build-containers --include cerc/builder-js echo "Images in the local registry:" -docker image ls +docker image ls -a # Deploy the test container $TEST_TARGET_SO --stack test deploy-system up # TODO: test that we can use the deployed container somehow