diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-07-05 13:29:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 13:29:03 -0400 |
commit | 51d3335c47cbc5ab583263064bee293b89ef166d (patch) | |
tree | 58458f42cb4ebb5c053880912d43e3fd666794e5 | |
parent | fdf090994eb032281f75e15aab6bc28261344cec (diff) | |
download | hello_world-51d3335c47cbc5ab583263064bee293b89ef166d.tar.gz |
Update Jenkinsfile
-rw-r--r-- | Jenkinsfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index b5a69df..f8a8441 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,19 +9,20 @@ pipeline { stages { stage('Bootstrap') { steps { - sh '.jenkins/install_conda.sh' + cinst = new CondaInstaller("${WORKSPACE}/tmp") + cinst.install() } } stage('Build') { steps { echo 'Building..' - sh '.jenkins/build.sh' + sh '.jenkins/build.sh' } } stage('Test') { steps { echo 'Testing..' - sh 'test -f setup.py' + sh 'test -f setup.py' } } stage('Deploy') { |