aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 7969b8f..447f0a7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,10 +2,15 @@ pipeline {
agent any
stages {
+ stage('Bootstrap') {
+ steps {
+ sh '.jenkins/install_conda.sh'
+ }
+ }
stage('Build') {
steps {
echo 'Building..'
- sh 'python setup.py install'
+ sh '.jenkins/build.sh'
}
}
stage('Test') {