diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-06-07 12:39:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-07 12:39:22 -0400 |
commit | b884dca38379284c52ed6634ba9c2e70f31393dc (patch) | |
tree | 5747c6a0d60671ff164a520eb58e25642903ede6 /jenkins/dispatch.groovy | |
parent | 0a1b97e535b78a36b7ccd599d1a10cee70caf19a (diff) | |
parent | d83a8b50f892f99799f215a3736db9cf55bfe825 (diff) | |
download | build_control-b884dca38379284c52ed6634ba9c2e70f31393dc.tar.gz |
Merge pull request #13 from rendinam/deps_w_culling
Propagate additional vars to builder
Diffstat (limited to 'jenkins/dispatch.groovy')
-rw-r--r-- | jenkins/dispatch.groovy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index d671f28..f05d906 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -177,7 +177,7 @@ node(LABEL) { // of available package recipes. def culled_option = "--culled" if (this.cull_manifest == "false") { - culled_option = "" + culled_option = "" } def build_list_file = "build_list" cmd = "rambo" @@ -205,7 +205,9 @@ node(LABEL) { string(name: "py_version", value: PY_VERSION), string(name: "numpy_version", value: "${this.manifest.numpy_version}"), - string(name: "parent_workspace", value: env.WORKSPACE)], + string(name: "parent_workspace", value: env.WORKSPACE), + string(name: "cull_manifest", value: this.cull_manifest), + string(name: "channel_URL", value: this.manifest.channel_URL)], propagate: false } } |