diff options
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 9 |
1 files changed, 8 insertions, 1 deletions
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') { |