From b9f93b58db78fa43502f5b411c6cb5161056c26e Mon Sep 17 00:00:00 2001 From: Jade Abraham Date: Mon, 3 Mar 2025 08:31:07 -0800 Subject: [PATCH] log the current hash Signed-off-by: Jade Abraham --- test/studies/arkouda/sub_test | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/studies/arkouda/sub_test b/test/studies/arkouda/sub_test index c6055987976b..7e66d804029f 100755 --- a/test/studies/arkouda/sub_test +++ b/test/studies/arkouda/sub_test @@ -39,6 +39,12 @@ fi cd ${ARKOUDA_HOME} +# report the current git hash +git_hash=$(git rev-parse HEAD) +# strip .git from the end of ARKOUDA_URL, if it's there +git_url=$(echo $ARKOUDA_URL | sed 's/\.git$//') +log "Current Arkouda commit is $git_hash, see $git_url/commit/$git_hash" + if [ -z "${ARKOUDA_SKIP_CHECK_DEPS}" ] ; then # Install dependencies if needed if make check-deps ; then