This commit is contained in:
laskau 2019-04-26 12:08:18 +02:00
parent da8f5d5ae3
commit 70ea64fee1

7
Jenkinsfile vendored
View File

@ -20,18 +20,13 @@ pipeline {
stage('run script') { stage('run script') {
steps{ steps{
sh 'sh test.sh text.txt out.txt' sh 'sh test.sh text.txt out.txt'
archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md'
} }
} }
} }
post {
always {
junit 'build/reports/out.txt'
}
}
} }