Skip to content

Commit

Permalink
jobs/bump-lockfile: run testiso in a stage
Browse files Browse the repository at this point in the history
Running it in a stage will cause it to show up properly in the Blue
Ocean view.
  • Loading branch information
dustymabe committed Apr 18, 2023
1 parent aba10f3 commit dbc32b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jobs/bump-lockfile.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit dbc32b2

Please sign in to comment.