From 70ea64fee154b4bbc033c03c0cc2e99fafcb0b34 Mon Sep 17 00:00:00 2001 From: laskau Date: Fri, 26 Apr 2019 12:08:18 +0200 Subject: [PATCH] 13 --- Jenkinsfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d33bb01..31373b8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,18 +20,13 @@ pipeline { stage('run script') { steps{ sh 'sh test.sh text.txt out.txt' + archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md' } } } - - post { - always { - junit 'build/reports/out.txt' - } - } }