paper-cutter/Jenkinsfile
2021-11-29 07:46:08 +01:00

15 lines
267 B
Groovy

pipeline {
agent {
docker {
image 'loxygen/autozoil'
}
}
stages {
stage('Test') {
steps {
dir('test') {
sh 'bash run_tests.sh'
}
}
}
}