paper-cutter/Jenkinsfile
2021-11-29 11:32:45 +01:00

18 lines
446 B
Groovy

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