Add Jenkinsfile

This commit is contained in:
Filip Gralinski 2021-11-29 07:46:08 +01:00
parent ecaef6c402
commit dcad0b33b7

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'loxygen/autozoil'
}
}
stages {
stage('Test') {
steps {
dir('test') {
sh 'bash run_tests.sh'
}
}
}
}