From af12a963ce3c0358b5465b624b9dbb2681c8572b Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 3 Aug 2017 13:56:33 -0400 Subject: Compose publication path and run index there --- jenkins/dispatch.groovy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'jenkins/dispatch.groovy') diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index a79ad51..8393cd8 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -239,7 +239,8 @@ node(LABEL) { stage ("Publication") { // Copy packages built during this session to the publication path. - sh(script: "rsync -avzr ${this.conda_build_output_dir}/*.tar.bz2 ${PUBLICATION_PATH}/${this.CONDA_PLATFORM}") + def publication_path = "${PUBLICATION_ROOT}/${this.CONDA_PLATFORM}" + sh(script: "rsync -avzr ${this.conda_build_output_dir}/*.tar.bz2 ${publication_path}") // Use a lock file to prevent two dispatch jobs that finish at the same // time from trampling each other's indexing process. def lockfile = "${this.conda_build_output_dir}/LOCK-Jenkins" @@ -259,7 +260,7 @@ node(LABEL) { if ( tries_remaining != 0 ) { sh(script: "touch ${lockfile}") dir(this.conda_build_output_dir) { - sh(script: "conda index") + sh(script: "conda index ${publication_path}") } sh(script: "rm -f ${lockfile}") } -- cgit