aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jenkins/dispatch.groovy5
1 files changed, 3 insertions, 2 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy
index f123331..42b3535 100644
--- a/jenkins/dispatch.groovy
+++ b/jenkins/dispatch.groovy
@@ -124,7 +124,6 @@ node(LABEL) {
// Get build utilities
dir(this.utils_dir) {
git url: UTILS_REPO
- sh "python setup.py install"
}
// Check for the availability of a download tool and then use it
@@ -155,7 +154,7 @@ node(LABEL) {
// Install specific versions of miniconda and conda-build
sh "bash ./${conda_installer} -b -p miniconda"
- env.PATH = "${env.WORKSPACE}/miniconda/bin/:${env.PATH}"
+ env.PATH = "${env.WORKSPACE}/miniconda/bin:${env.PATH}"
sh "conda install --quiet conda=${CONDA_VERSION}"
sh "conda install --quiet --yes conda-build=${CONDA_BUILD_VERSION}"
@@ -167,6 +166,8 @@ node(LABEL) {
def full_patchname = "${patches_dir}/${patchname}"
sh "patch ${filename} ${full_patchname}"
+ // Install support tools
+ sh "python setup.py install"
}
stage("Generate build list") {