diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-08-03 09:51:28 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-08-03 09:51:28 -0400 |
commit | 000cf487a12b574d3c80c305bd81f8748cce22d3 (patch) | |
tree | f6cb9148a961e642e30ff73f6a036cb653bcacca | |
parent | 75e46b8b4352421511776a3556b3aba34b069713 (diff) | |
download | build_control-000cf487a12b574d3c80c305bd81f8748cce22d3.tar.gz |
Inject env var for use downstream
-rw-r--r-- | jenkins/generator_DSL.groovy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jenkins/generator_DSL.groovy b/jenkins/generator_DSL.groovy index f74275c..b48339a 100644 --- a/jenkins/generator_DSL.groovy +++ b/jenkins/generator_DSL.groovy @@ -47,6 +47,7 @@ pipelineJob("${suite_name}/_${script.tokenize(".")[0]}") { "CONDA_BUILD_VERSION: ${conda_build_version}\n" + "CONDA_BASE_URL: ${conda_base_URL}\n" + "UTILS_REPO: ${utils_repo}\n") + "PUBLICATION_PATH: ${publication_path}\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_PATH", publication_path) } definition { cps { |