Skip to content

Commit

Permalink
ci: migrate to new directory and method names
Browse files Browse the repository at this point in the history
The previous `fcos*` ones are deprecated.
See: coreos/coreos-ci-lib#122 On branch main
  • Loading branch information
jlebon committed Oct 13, 2022
1 parent 3d742f1 commit 40c938c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pod(image: imageName + ":latest", kvm: true, cpu: cpuCount, memory: "10Gi") {
archiveArtifacts artifacts: 'rpmdb.txt'

// Run stage Build FCOS (init, fetch and build)
fcosBuild(skipKola: 1, cosaDir: "/srv", noForce: true)
cosaBuild(skipKola: 1, cosaDir: "/srv", noForce: true)

// Run stage Kola QEMU (basic-qemu-scenarios, upgrade and self tests)
fcosKola(cosaDir: "/srv", addExtTests: ["${env.WORKSPACE}/ci/run-kola-self-tests"])
kola(cosaDir: "/srv", addExtTests: ["${env.WORKSPACE}/ci/run-kola-self-tests"])

stage("Build Metal") {
cosaParallelCmds(cosaDir: "/srv", commands: ["metal", "metal4k"])
Expand All @@ -32,7 +32,7 @@ pod(image: imageName + ":latest", kvm: true, cpu: cpuCount, memory: "10Gi") {
utils.cosaCmd(cosaDir: "/srv", args: "buildextend-live --fast")
}

fcosKolaTestIso(cosaDir: "/srv", extraArgs4k: "--no-pxe")
kolaTestIso(cosaDir: "/srv", extraArgs4k: "--no-pxe")

stage("Build Cloud Images") {
cosaParallelCmds(cosaDir: "/srv", commands: ["Aliyun", "AWS", "Azure", "DigitalOcean", "Exoscale", "GCP",
Expand Down

0 comments on commit 40c938c

Please sign in to comment.