From ba2477f227dca2cfa0228f0257f7439fe3b9f588 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 3 Nov 2025 18:33:42 -0700 Subject: [PATCH] ceph-dev-pipeline: Make node stage less verbose Signed-off-by: Zack Cerza --- ceph-dev-pipeline/build/Jenkinsfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index 151bdbef..13ee622c 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -225,17 +225,11 @@ pipeline { steps { script { build_matrix["${DIST}_${ARCH}"] = env.CI_COMPILE.toBoolean() - sh "hostname -f" + println("Building: DIST=${env.DIST} ARCH=${env.ARCH} FLAVOR=${env.FLAVOR}") def node_shortname = env.NODE_NAME.split('\\+')[-1] def node_url = new URI([env.JENKINS_URL, "computer", env.NODE_NAME].join("/")).normalize() - println("DIST=${env.DIST} ARCH=${env.ARCH} FLAVOR=${env.FLAVOR}") - println("${node_shortname}") + println("Node: ${node_shortname}") println("${node_url}") - def os = get_os_info(env.DIST) - println("OS_NAME=${os.name}") - println("OS_PKG_TYPE=${os.pkg_type}") - println("OS_VERSION=${os.version}") - println("OS_VERSION_NAME=${os.version_name}") } sh './scripts/setup_container_runtime.sh' sh "cat /etc/os-release" -- 2.39.5