From 6eff5c58e7abc714418cf933d4cc51543bddde7b Mon Sep 17 00:00:00 2001 From: Michael Halkenhaeuser Date: Fri, 29 May 2026 08:13:56 -0500 Subject: [PATCH 1/2] [CI] run_composable-kernels.sh: Add printing of repo branch / SHA --- bin/run_composable-kernels.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/run_composable-kernels.sh b/bin/run_composable-kernels.sh index e5520e3e6..ada536754 100755 --- a/bin/run_composable-kernels.sh +++ b/bin/run_composable-kernels.sh @@ -288,11 +288,14 @@ elif [ "${ShouldUpdateCKRepo}" == 'yes' ]; then pushd "${CK_REPO}" || exit 1 git reset --hard origin/${CKRepoBranchName} git pull - # TODO: Write current SHA to somewhere such that it is known which SHA - # was tested in this nightly run. popd || exit 1 fi +# Print branch and SHA of the rocm-libraries repository, followed by CK's SHA +echo "rocm-libraries branch: $(git -C ${CK_REPO} branch --show-current)" +echo "rocm-libraries repo SHA: $(git -C ${CK_REPO} rev-parse HEAD)" +echo "composablekernel repo SHA: $(git -C ${CK_SRC} log -1 --format=%H -- .)" + CKBuildTool='make' DashKArg='-k' if command -v ninja >/dev/null; then From 57cefe99485569b1eaa0d25db37fd45d723e1194 Mon Sep 17 00:00:00 2001 From: Michael Halkenhaeuser Date: Fri, 29 May 2026 08:55:17 -0500 Subject: [PATCH 2/2] fixup! [CI] run_composable-kernels.sh: Add printing of repo branch / SHA --- bin/run_composable-kernels.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/run_composable-kernels.sh b/bin/run_composable-kernels.sh index ada536754..0184330f2 100755 --- a/bin/run_composable-kernels.sh +++ b/bin/run_composable-kernels.sh @@ -292,9 +292,9 @@ elif [ "${ShouldUpdateCKRepo}" == 'yes' ]; then fi # Print branch and SHA of the rocm-libraries repository, followed by CK's SHA -echo "rocm-libraries branch: $(git -C ${CK_REPO} branch --show-current)" -echo "rocm-libraries repo SHA: $(git -C ${CK_REPO} rev-parse HEAD)" -echo "composablekernel repo SHA: $(git -C ${CK_SRC} log -1 --format=%H -- .)" +echo "rocm-libraries branch: $(git -C "${CK_REPO}" branch --show-current)" +echo "rocm-libraries repo SHA: $(git -C "${CK_REPO}" rev-parse HEAD)" +echo "composablekernel repo SHA: $(git -C "${CK_SRC}" log -1 --format=%H -- .)" CKBuildTool='make' DashKArg='-k'