From 61b019f2a242a5a1eaca7942f08f0106b35b3906 Mon Sep 17 00:00:00 2001 From: Jobbins <15132019+reboss@users.noreply.github.com> Date: Fri, 15 May 2026 21:50:09 +0000 Subject: [PATCH] [rocm-libraries] ROCm/rocm-libraries#6961 (commit 47e8768) [CK] print hostname and $NODE_NAME to find inconsistencies (#6961) ## Motivation We suspect that the check for amdgpu: `cat /sys/module/amdgpu/version` sometimes gets ran on the Jenkins controller instead of the node. This adds the `hostname` command to compare to the $NODE_NAME variable. ## Technical Details Updated Jenkinsfile to include the `hostname` command. ## Test Plan ## Test Result ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index f4a97a145d..b041979819 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,6 +49,7 @@ def rocmnode(name) { def show_node_info() { sh """ echo "NODE_NAME = \$NODE_NAME" + hostname lsb_release -sd uname -r cat /sys/module/amdgpu/version