Skip to content

Commit

Permalink
ci: build metal images in one OSBuild invocation
Browse files Browse the repository at this point in the history
We can do this all with OSBuild now so let's not run parallel
processes here. This will enable us to drop the cache snapshot
bits since we won't have two processes trying to use the cache
qcow at the same time.
  • Loading branch information
dustymabe committed Nov 23, 2024
1 parent 8ce5e88 commit ab8fe51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pod(image: imageName + ":latest", kvm: true, cpu: "${cpuCount}", memory: "${memo
kola(cosaDir: "/srv", addExtTests: ["${env.WORKSPACE}/ci/run-kola-self-tests"])

stage("Build Metal") {
cosaParallelCmds(cosaDir: "/srv", commands: ["metal", "metal4k"])
utils.cosaCmd(cosaDir: "/srv", args: "osbuild metal metal4k")
}

stage("Build Live Images") {
Expand Down

0 comments on commit ab8fe51

Please sign in to comment.