aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2017-07-05 13:29:03 -0400
committerGitHub <noreply@github.com>2017-07-05 13:29:03 -0400
commit51d3335c47cbc5ab583263064bee293b89ef166d (patch)
tree58458f42cb4ebb5c053880912d43e3fd666794e5
parentfdf090994eb032281f75e15aab6bc28261344cec (diff)
downloadhello_world-51d3335c47cbc5ab583263064bee293b89ef166d.tar.gz
Update Jenkinsfile
-rw-r--r--Jenkinsfile7
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') {