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