Trying build

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

13
Jenkinsfile vendored
View File

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