diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 22:22:27 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 22:22:27 -0400 |
commit | ef413bb8bf87931b3ca8e79eedfaf835c8311a71 (patch) | |
tree | fe5a74952a86875f81b3a80876929d0b5977a5d9 | |
parent | 208aa350891bfab8ea5d96abf2cad75a24823b1b (diff) | |
download | hello_world-ef413bb8bf87931b3ca8e79eedfaf835c8311a71.tar.gz |
bleh
-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') { |