From 5419fb929d204900dfcfbaf9dcd6db9501002f01 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 19 May 2025 09:23:59 -0400 Subject: [PATCH] .cci.jenkinsfile: fix typo in shwrap I needed to actually provide a command to run that would print the text. Fixes 456beae. --- .cci.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index a6bf91b50..d835e28fb 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -17,7 +17,7 @@ def imageName = buildImage(env: [ENABLE_GO_RACE_DETECTOR: "1", GOMAXPROCS: cpuCo // that we allow to fail to work around the problem while we investigate. try { pod(image: imageName + ":latest", kvm: true, cpu: "${cpuCount}", memory: "${memory}Mi") { - shwrap("Initial pod creation worked!") + shwrap("echo 'Initial pod creation worked!'") } } catch(e) { echo "Initial pod creation failed. Continuing."