diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..835cb2e3 --- /dev/null +++ b/Jenkinsfile @@ -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' + } + } + } +} \ No newline at end of file