ci: Use new names for custom kola steps
authorJonathan Lebon <jonathan@jlebon.com>
Thu, 13 Oct 2022 13:18:08 +0000 (09:18 -0400)
committerJonathan Lebon <jonathan@jlebon.com>
Thu, 13 Oct 2022 13:18:08 +0000 (09:18 -0400)
The old `fcos*` versions are deprecated now:
https://github.com/coreos/coreos-ci-lib/pull/111

.cci.jenkinsfile

index 6ec51c39ae53f17fbb6d694d19e7f0f9de1de1b1..49564996c95e238aaece5c24393bf94bce0eb3e8 100644 (file)
@@ -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)
 }