From dbc32b2a96f26e42e4eb4dbf1220e43ecea0bdd2 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 18 Apr 2023 15:24:38 -0400 Subject: [PATCH] jobs/bump-lockfile: run testiso in a stage Running it in a stage will cause it to show up properly in the Blue Ocean view. --- jobs/bump-lockfile.Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jobs/bump-lockfile.Jenkinsfile b/jobs/bump-lockfile.Jenkinsfile index dbf44a202..131f8ce38 100644 --- a/jobs/bump-lockfile.Jenkinsfile +++ b/jobs/bump-lockfile.Jenkinsfile @@ -224,7 +224,9 @@ lock(resource: "bump-${params.STREAM}") { // compressed one shwrap("cosa compress --artifact=metal") } - kolaTestIso(cosaDir: env.WORKSPACE, arch: arch, marker: arch) + stage("${arch}:kola:testiso") { + kolaTestIso(cosaDir: env.WORKSPACE, arch: arch, marker: arch) + } } if (arch == "x86_64") { buildAndTest()