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/dispatch.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/dispatch.groovy')
-rw-r--r-- | jenkins/dispatch.groovy | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 6dec068..0f5ac79 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -108,6 +108,7 @@ node(LABEL) { "Recipe repository: ${this.manifest.repository}\n" + "Numpy version spec: ${this.manifest.numpy_version}\n" + "Channel URL: ${this.manifest.channel_URL}\n" + + "Publication root: ${this.manifest.publication_root}\n" + "Package list:\n${manifest_pkg_txt}") } @@ -159,8 +160,6 @@ node(LABEL) { sh "false" } - //def conda_installer = - // this.conda_installers["${this.OSname}-py${PY_VERSION}"] def conda_installer = this.conda_installers["${this.OSname}-py${this.py_maj_version}"] dl_cmd = dl_cmd + " ${CONDA_BASE_URL}/${conda_installer}" @@ -246,7 +245,7 @@ node(LABEL) { } stage ("Publish") { - def publication_path = "${PUBLICATION_ROOT}/${this.CONDA_PLATFORM}" + def publication_path = "${this.manifest.publication_root}/${this.CONDA_PLATFORM}" // Copy and index packages if any were produced in the build. def artifacts_present = sh(script: "ls ${this.conda_build_output_dir}/*.tar.bz2 >/dev/null 2>&1", |