diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-08-09 20:59:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-09 20:59:20 -0400 |
commit | 41a33047180f77c1a47d6ff3304073907dd108ef (patch) | |
tree | a0d9985cfbc228d093a4c3a74f63cd21a2bd893e /jenkins/generator_DSL.groovy | |
parent | 0bb7864a69eb65c582d5c9dc42abe48331e345a1 (diff) | |
parent | b708fbf728a3a1b28c5bedbb6edc8a4b2289dbad (diff) | |
download | build_control-41a33047180f77c1a47d6ff3304073907dd108ef.tar.gz |
Merge pull request #22 from rendinam/artifacts
Publish packages
Diffstat (limited to 'jenkins/generator_DSL.groovy')
-rw-r--r-- | jenkins/generator_DSL.groovy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jenkins/generator_DSL.groovy b/jenkins/generator_DSL.groovy index f74275c..f05c46c 100644 --- a/jenkins/generator_DSL.groovy +++ b/jenkins/generator_DSL.groovy @@ -46,7 +46,8 @@ pipelineJob("${suite_name}/_${script.tokenize(".")[0]}") { "CONDA_VERSION: ${conda_version}\n" + "CONDA_BUILD_VERSION: ${conda_build_version}\n" + "CONDA_BASE_URL: ${conda_base_URL}\n" + - "UTILS_REPO: ${utils_repo}\n") + "UTILS_REPO: ${utils_repo}\n" + + "PUBLICATION_ROOT: ${publication_root}\n") environmentVariables { env("JOB_DEF_GENERATION_TIME", job_def_generation_time) env("SCRIPT", this.script) @@ -59,6 +60,7 @@ pipelineJob("${suite_name}/_${script.tokenize(".")[0]}") { env("CONDA_BUILD_VERSION", conda_build_version) env("CONDA_BASE_URL", conda_base_URL) env("UTILS_REPO", utils_repo) + env("PUBLICATION_ROOT", publication_root) } definition { cps { |