jenkinsfile add more artifacts'

This commit is contained in:
s452111 2020-04-22 14:32:11 +02:00
parent 290040591f
commit a0c0edb305

6
Jenkinsfile vendored
View File

@ -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'
}
}
}