Skip to content

Commit

Permalink
jobs/build{,-arch}.Jenkinsfile: fix run_fcos_upgrade_tests() params
Browse files Browse the repository at this point in the history
The version comes before the cosa_img in the argument list.

Fixes b81f738.
  • Loading branch information
dustymabe authored and Adam0Brien committed Jul 6, 2023
1 parent b807174 commit f54d368
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jobs/build-arch.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ lock(resource: "build-${params.STREAM}-${basearch}") {
}
if (pipecfg.misc?.run_extended_upgrade_test_fcos) {
stage('Upgrade Tests') {
pipeutils.run_fcos_upgrade_tests(pipecfg, params.STREAM, cosa_img,
newBuildID, basearch, src_config_commit)
pipeutils.run_fcos_upgrade_tests(pipecfg, params.STREAM, newBuildID,
cosa_img, basearch, src_config_commit)
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions jobs/build.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,8 @@ lock(resource: "build-${params.STREAM}") {
}
if (pipecfg.misc?.run_extended_upgrade_test_fcos) {
stage('Upgrade Tests') {
pipeutils.run_fcos_upgrade_tests(pipecfg, params.STREAM, cosa_img,
newBuildID, basearch, src_config_commit)
pipeutils.run_fcos_upgrade_tests(pipecfg, params.STREAM, newBuildID,
cosa_img, basearch, src_config_commit)
}
}
}
Expand Down

0 comments on commit f54d368

Please sign in to comment.