Skip to content

Commit

Permalink
Jenkinsfile: Get latest release's version from cheribsdInfo
Browse files Browse the repository at this point in the history
This bumps it to 23.11 and will automatically pick up 24.05 soon.
  • Loading branch information
jrtc27 committed Jul 17, 2024
1 parent c785485 commit f1098ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def bootCheriBSDForAllArchitectures(params, String qemuConfig, boolean isDebug)
addBootJobs(bootJobs, params, qemuConfig, architecture, "main")
if (!isDebug) {
// For the non-ASAN build of QEMU we also boot the latest release
addBootJobs(bootJobs, params, qemuConfig, architecture, "releng/22.12", "-latest-release")
def latestRelease = cheribsdInfo.getReleasedVersions()[-1]
addBootJobs(bootJobs, params, qemuConfig, architecture, "releng/${latestRelease}", "-latest-release")
}
def targetBranch = env.CHANGE_TARGET ? env.CHANGE_TARGET : env.BRANCH_NAME;
if (targetBranch == 'dev') {
Expand Down

0 comments on commit f1098ba

Please sign in to comment.