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,7 +42,6 @@ stage("Build") {
// Build FCOS and run kola tests.
// Both fcosKola and fcosKolaTestIso require 4G max. Add 512M for overhead.
stage("FCOS") {
cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
stage("Build FCOS") {
checkout scm
@ -67,4 +66,3 @@ stage("FCOS") {
fcosKola(cosaDir: "${env.WORKSPACE}")
fcosKolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true)
}
}