ci: Drop unnecessary outer stage

We define stages inside of this stage, so get rid of the outer `FCOS`
stage. This should help rendering the pipeline in BlueOcean more
clearly.
This commit is contained in:
Jonathan Lebon 2022-10-13 09:16:19 -04:00
parent d5129e3766
commit 139759dd7e
1 changed files with 21 additions and 23 deletions

View File

@ -42,8 +42,7 @@ stage("Build") {
// Build FCOS and run kola tests. // Build FCOS and run kola tests.
// Both fcosKola and fcosKolaTestIso require 4G max. Add 512M for overhead. // Both fcosKola and fcosKolaTestIso require 4G max. Add 512M for overhead.
stage("FCOS") { cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
stage("Build FCOS") { stage("Build FCOS") {
checkout scm checkout scm
unstash 'build' unstash 'build'
@ -66,5 +65,4 @@ stage("FCOS") {
} }
fcosKola(cosaDir: "${env.WORKSPACE}") fcosKola(cosaDir: "${env.WORKSPACE}")
fcosKolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true) fcosKolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true)
}
} }