Trying build

This commit is contained in:
Filip Gralinski 2021-11-29 08:27:58 +01:00
parent 3cac89da81
commit 28fff8335d

9
Jenkinsfile vendored
View File

@ -1,16 +1,15 @@
pipeline { pipeline {
agent { agent any
docker {
image 'loxygen/autozoil'
}
}
stages { stages {
stage('Test') { stage('Test') {
steps { steps {
def customImage = docker.build("paper-cutter:${env.BUILD_ID}")
customImage.inside() {
dir('test') { dir('test') {
sh 'bash run_tests.sh' sh 'bash run_tests.sh'
} }
} }
} }
} }
}
} }