Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable jdk15u pipeline now that it is retired #2403

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
andrew-m-leonard marked this conversation as resolved.
Show resolved Hide resolved

## 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