1
0
mirror of https://github.com/coreos/coreos-assembler.git synced 2026-02-05 09:44:53 +01:00

.cci.jenkinsfile: fix typo in shwrap

I needed to actually provide a command to run that would print the text.
Fixes 456beae.
This commit is contained in:
Dusty Mabe
2025-05-19 09:23:59 -04:00
parent 701df4ab60
commit 5419fb929d

View File

@@ -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."