From a0c0edb3053bbd334915365639cd2433e99c8375 Mon Sep 17 00:00:00 2001 From: s452111 Date: Wed, 22 Apr 2020 14:32:11 +0200 Subject: [PATCH] jenkinsfile add more artifacts' --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ec4b8af..7b8420c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ pipeline { copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() } } - stage('Count words') { + stage('Count the metrics') { steps { sh 'chmod +x ./service.sh' sh './service.sh' @@ -28,7 +28,9 @@ pipeline { stage('Archive artifacts') { steps { archiveArtifacts 'lines_count.txt' - archiveArtifacts 'wikiniews_results.tsv' + archiveArtifacts 'wikinews_results.tsv' + archiveArtifacts 'wer.txt' + archiveArtifacts 'srr.txt' } } }