paper-cutter/Jenkinsfile

15 lines
267 B
Plaintext
Raw Normal View History

2021-11-29 07:46:08 +01:00
pipeline {
agent {
docker {
image 'loxygen/autozoil'
}
}
stages {
stage('Test') {
steps {
dir('test') {
sh 'bash run_tests.sh'
}
}
}
}