summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2022-10-13 09:18:08 -0400
committerJonathan Lebon <jonathan@jlebon.com>2022-10-13 09:18:08 -0400
commitc874d4f3f359f5eaebc1d75da070f160c8e8d49e (patch)
tree42edd172022b995d36b7f9475c21356bb2b6590b
parent139759dd7e6315c2e186f88ee34bcd016d43b4fe (diff)
downloadostree-c874d4f3f359f5eaebc1d75da070f160c8e8d49e.tar.gz
ci: Use new names for custom kola steps
The old `fcos*` versions are deprecated now: https://github.com/coreos/coreos-ci-lib/pull/111
-rw-r--r--.cci.jenkinsfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile
index 6ec51c39..49564996 100644
--- a/.cci.jenkinsfile
+++ b/.cci.jenkinsfile
@@ -41,7 +41,7 @@ stage("Build") {
}
// Build FCOS and run kola tests.
-// Both fcosKola and fcosKolaTestIso require 4G max. Add 512M for overhead.
+// Both kola and kolaTestIso require 4G max. Add 512M for overhead.
cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
stage("Build FCOS") {
checkout scm
@@ -63,6 +63,6 @@ cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
""")
}
- fcosKola(cosaDir: "${env.WORKSPACE}")
- fcosKolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true)
+ kola(cosaDir: "${env.WORKSPACE}")
+ kolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true)
}