From ef413bb8bf87931b3ca8e79eedfaf835c8311a71 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 21 Jun 2017 22:22:27 -0400 Subject: bleh --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7969b8f..2615849 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,10 +2,17 @@ pipeline { agent any stages { + stage('Bootstrap') { + steps { + sh '.jenkins/install_conda.sh' + sh 'export PATH=${HOME}/mc3/bin:$PATH' + sh 'python --version' + } + } stage('Build') { steps { echo 'Building..' - sh 'python setup.py install' + sh '${HOME}/mc3/bin/python setup.py install' } } stage('Test') { -- cgit