Added jenkinsfile describing build and test pipeline

This commit is contained in:
kevlar 2018-03-01 17:21:20 -08:00
parent 2c154bb255
commit d3c78c3a7a

18
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,18 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh './bootstrap.sh'
sh './configure --prefix=/tmp/core_build'
sh 'make'
sh 'make install'
}
}
stage('test') {
steps {
sh 'pytest'
}
}
}
}