Skip to content

Commit

Permalink
Reverse order in case label to match Create
Browse files Browse the repository at this point in the history
  • Loading branch information
TerryMcGuinness-NOAA committed Aug 9, 2024
1 parent b2f6c60 commit 05a83cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ pipeline {
script {
def parallelStages = cases.collectEntries { caseName ->
["${caseName}": {
stage("Create: ${caseName}") {
stage("Create ${caseName}") {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {
script {
sh(script: "sed -n '/{.*}/!p' ${CUSTOM_WORKSPACE}/gfs/ci/cases/pr/${caseName}.yaml > ${CUSTOM_WORKSPACE}/gfs/ci/cases/pr/${caseName}.yaml.tmp")
Expand All @@ -209,7 +209,7 @@ pipeline {
}
}

stage("${caseName} Running") {
stage("Running ${caseName}") {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script {
HOMEgfs = "${CUSTOM_WORKSPACE}/gfs" // common HOMEgfs is used to launch the scripts that run the experiments
Expand Down

0 comments on commit 05a83cc

Please sign in to comment.