From c4a560e340bee45d60ef499ad963bdd8fbb7cc5d Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 21 Sep 2017 14:27:59 -0400 Subject: * Use pin environment only if pin packages are specified. * Convert cull_manifest to proper boolean parameter. --- jenkins/generator_DSL.groovy | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'jenkins/generator_DSL.groovy') diff --git a/jenkins/generator_DSL.groovy b/jenkins/generator_DSL.groovy index 6474e9c..82503c9 100644 --- a/jenkins/generator_DSL.groovy +++ b/jenkins/generator_DSL.groovy @@ -127,12 +127,15 @@ for (label in labels.trim().tokenize()) { stringParam("manifest_file", "manifest_file-DEFAULTVALUE", "Manifest (release) file to use for the build.") - stringParam("cull_manifest", - "cull_manifest-DEFAULTVALUE", + booleanParam("cull_manifest", + false, "Was the manifest culled as part of dispatch?") stringParam("channel_URL", "channel_URL-DEFAULTVALUE", "Publication channel used for culled builds.") + booleanParam("use_version_pins", + false, + "Whether or not to use global version pins.") } definition { cps { -- cgit