Skip to content

Commit

Permalink
Disable jdk15u pipeline now that it is retired
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Jan 25, 2021
1 parent dc9d09f commit b2a97a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@ When the repo has been created, a few changes to the codebase will be necessary
### Post Release Tasks
Once all the release binaries have been published the following tasks should be completed:
1. Reset the "weekly_release_scmReferences" (change to "") for the weekend release test build so it is using HEAD streams: https://github.com/AdoptOpenJDK/openjdk-build/tree/master/pipelines/jobs/configurations
2. If the latest version just released has come to the end of its non-LTS lifecycle (2 CPU updates, eg.jdk-15.0.2), then disable and retire that version form the Nightly pipeline builds:
- eg.https://github.com/AdoptOpenJDK/openjdk-build/pull/2403/files

## Summary on point releases

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node('master') {
def retiredVersions = [9, 10, 12, 13, 14]
def retiredVersions = [9, 10, 12, 13, 14, 15]

(8..30).each({javaVersion ->

Expand Down
2 changes: 2 additions & 0 deletions pipelines/jobs/configurations/jdk15u.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,6 @@ weekly_release_scmReferences=[
"dragonwell" : ""
]

disableJob = true

return this

0 comments on commit b2a97a6

Please sign in to comment.