[arvados] updated: 2.7.0-6422-g74de89b6ce
git repository hosting
git at public.arvados.org
Tue Apr 16 17:38:05 UTC 2024
Summary of changes:
tools/salt-install/tests/run-test.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
via 74de89b6ce9c97e05d09be7edc62fcf6d8bfb6cf (commit)
from 0d7c013162eed3238ee7e4574366a8e7d3bceda9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 74de89b6ce9c97e05d09be7edc62fcf6d8bfb6cf
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Tue Apr 16 14:37:15 2024 -0300
21666: Adds logging and status check to exit prematurely when failing.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/tools/salt-install/tests/run-test.sh b/tools/salt-install/tests/run-test.sh
index c52367e098..f56b252766 100755
--- a/tools/salt-install/tests/run-test.sh
+++ b/tools/salt-install/tests/run-test.sh
@@ -18,7 +18,11 @@ if ! curl -s -o /dev/null https://${ARVADOS_API_HOST}/users/welcome?return_to=%2
fi
# Then, run a basic diagnostics test.
-arvados-client diagnostics -internal-client
+echo "Running arvados-client diagnostics..."
+if ! arvados-client diagnostics -internal-client; then
+ echo "Diagnostics run FAILED, exiting"
+ exit 1
+fi
# https://doc.arvados.org/v2.0/install/install-jobs-image.html
echo "Creating Arvados Standard Docker Images project"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list