paper-cutter/Jenkinsfile
2021-11-29 11:30:03 +01:00

17 lines
402 B
Groovy

pipeline {
agent any
stages {
stage('Test') {
steps {
script {
def customImage = docker.build("paper-cutter:${env.BUILD_ID}")
customImage.inside() {
dir('test') {
sh 'bash run_tests.sh'
}
}
}
}
}
}
}