diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-08-16 15:48:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-16 15:48:57 -0400 |
commit | 9885e87a3e6a6e83cf02882354be649b3a9a7ba8 (patch) | |
tree | 13ff0fa6e71ba0779e0e00c1fecb222b5aef38f7 /jenkins/generator_DSL.groovy | |
parent | 75651d3748df93ddc7feb70dfae92850e49fcc0f (diff) | |
parent | 9660524758b9c0b22df6353a477d6b99a1664577 (diff) | |
download | build_control-9885e87a3e6a6e83cf02882354be649b3a9a7ba8.tar.gz |
Merge pull request #24 from rendinam/param_consolidate
Param consolidate
Diffstat (limited to 'jenkins/generator_DSL.groovy')
-rw-r--r-- | jenkins/generator_DSL.groovy | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/jenkins/generator_DSL.groovy b/jenkins/generator_DSL.groovy index f05c46c..f74275c 100644 --- a/jenkins/generator_DSL.groovy +++ b/jenkins/generator_DSL.groovy @@ -46,8 +46,7 @@ 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" + - "PUBLICATION_ROOT: ${publication_root}\n") + "UTILS_REPO: ${utils_repo}\n") environmentVariables { env("JOB_DEF_GENERATION_TIME", job_def_generation_time) env("SCRIPT", this.script) @@ -60,7 +59,6 @@ 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 { |