diff --git a/pipelines/build/regeneration/build_pipeline_generator.groovy b/pipelines/build/regeneration/build_pipeline_generator.groovy index 3831a3feb..a12895bd9 100644 --- a/pipelines/build/regeneration/build_pipeline_generator.groovy +++ b/pipelines/build/regeneration/build_pipeline_generator.groovy @@ -186,7 +186,7 @@ node('worker') { disableJob : false, pipelineSchedule : '0 0 31 2 0', // 31st Feb, so will never run, adoptScripts : false, - releaseType : 'Nightly' + releaseType : 'Nightly Without Publish' ] def target; @@ -304,7 +304,7 @@ node('worker') { config.put('pipelineSchedule', '0 0 31 2 0') } } - config.releaseType = "Weekly" + config.releaseType = "Weekly Without Publish" println "[INFO] CREATING JDK${javaVersion} WEEKLY RELEASE PIPELINE WITH NEW CONFIG VALUES:" println "JOB_NAME = ${config.JOB_NAME}" diff --git a/pipelines/jobs/pipeline_job_template.groovy b/pipelines/jobs/pipeline_job_template.groovy index 94e912ff7..43eebfbb7 100644 --- a/pipelines/jobs/pipeline_job_template.groovy +++ b/pipelines/jobs/pipeline_job_template.groovy @@ -104,7 +104,7 @@ pipelineJob("${BUILD_FOLDER}/${JOB_NAME}") { stringParam('dockerExcludes', '', 'Map of targetConfigurations to exclude from docker building. If a targetConfiguration (i.e. { "x64LinuxXL": [ "openj9" ], "aarch64Linux": [ "hotspot", "openj9" ] }) has been entered into this field, jenkins will build the jdk without using docker. This param overrides the dockerImage and dockerFile downstream job parameters.') stringParam('baseFilePath', '', "Relative path to where the build_base_file.groovy file is located. This runs the downstream job setup and configuration retrieval services.
Default: ${defaultsJson['baseFileDirectories']['upstream']}") stringParam('buildConfigFilePath', '', "Relative path to where the jdkxx_pipeline_config.groovy file is located. It contains the build configurations for each platform, architecture and variant.
Default: ${defaultsJson['configDirectories']['build']}/jdkxx_pipeline_config.groovy") - choiceParam('releaseType', ['Nightly Without Publish', 'Nightly', 'Weekly', 'Weekly Without Publish', 'Release', jobReleaseType].unique(), 'Nightly - release a standard nightly build.
Nightly Without Publish - run a nightly but do not publish.
Weekly - release a standard weekly build, run with extended tests.
Weekly Without Publish - run a weekly but do not publish.
Release - this is a release, this will need to be manually promoted.') + choiceParam('releaseType', [jobReleaseType, 'Nightly', 'Nightly Without Publish', 'Weekly', 'Weekly Without Publish', 'Release'].unique(), 'Nightly - release a standard nightly build.
Nightly Without Publish - run a nightly but do not publish.
Weekly - release a standard weekly build, run with extended tests.
Weekly Without Publish - run a weekly but do not publish.
Release - this is a release, this will need to be manually promoted.') stringParam('overridePublishName', '', 'REQUIRED for OpenJ9: Name that determines the publish name (and is used by the meta-data file), defaults to scmReference(minus _adopt if present).
Nightly builds: Leave blank (defaults to a date_time stamp).
OpenJ9 Release build Java 8 example jdk8u192-b12_openj9-0.12.1 and for OpenJ9 Java 11 example jdk-11.0.2+9_openj9-0.12.1.') stringParam('scmReference', '', 'Tag name or Branch name from which openjdk source code repo to build. Nightly builds: Defaults to, Hotspot=dev, OpenJ9=openj9, others=master.
Release builds: For hotspot JDK8 this would be the OpenJDK tag, for hotspot JDK11+ this would be the Adopt merge tag for the desired OpenJDK tag eg.jdk-11.0.4+10_adopt, and for OpenJ9 this will be the release branch, eg.openj9-0.14.0.') stringParam('buildReference', '', 'SHA1 or Tag name or Branch name of temurin-build repo. Defaults to master')