This commit is contained in:
laskau 2019-04-26 12:06:55 +02:00
parent 12ae9cf6e2
commit da8f5d5ae3

16
Jenkinsfile vendored
View File

@ -11,12 +11,26 @@ pipeline {
} }
} }
stage('Run') { stage('Git checkout') {
steps{ steps{
sh 'git checkout' sh 'git checkout'
}
}
stage('run script') {
steps{
sh 'sh test.sh text.txt out.txt' sh 'sh test.sh text.txt out.txt'
} }
} }
}
post {
always {
junit 'build/reports/out.txt'
}
} }
} }