core-extra/Jenkinsfile

18 lines
253 B
Text
Raw Normal View History

pipeline {
agent any
stages {
stage('build') {
steps {
sh './bootstrap.sh'
sh './configure'
sh 'make'
sh 'make install'
}
}
stage('test') {
steps {
sh 'pytest'
}
}
}
}