From b2a97a65029faeae1881ea82365518844c7b4d52 Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Mon, 25 Jan 2021 10:25:38 +0000 Subject: [PATCH] Disable jdk15u pipeline now that it is retired Signed-off-by: Andrew Leonard --- RELEASING.md | 2 ++ pipelines/build/regeneration/build_pipeline_generator.groovy | 2 +- pipelines/jobs/configurations/jdk15u.groovy | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 361e29d89..79531758b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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 diff --git a/pipelines/build/regeneration/build_pipeline_generator.groovy b/pipelines/build/regeneration/build_pipeline_generator.groovy index 68a3dff47..850ae92e2 100644 --- a/pipelines/build/regeneration/build_pipeline_generator.groovy +++ b/pipelines/build/regeneration/build_pipeline_generator.groovy @@ -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 -> diff --git a/pipelines/jobs/configurations/jdk15u.groovy b/pipelines/jobs/configurations/jdk15u.groovy index b903ebc65..1ccc3488b 100644 --- a/pipelines/jobs/configurations/jdk15u.groovy +++ b/pipelines/jobs/configurations/jdk15u.groovy @@ -66,4 +66,6 @@ weekly_release_scmReferences=[ "dragonwell" : "" ] +disableJob = true + return this