This commit is contained in:
Cezary 2020-05-04 23:55:29 +02:00
parent f0214422e2
commit ee7e13bc69
1 changed files with 2 additions and 7 deletions

9
Jenkinsfile vendored
View File

@ -9,8 +9,7 @@ pipeline {
stage('copyArtifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's432211-metrics', selector: lastSuccessful()
copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's432211-metrics', selector: lastSuccessful()
}
}
stage('countLines') {
@ -27,10 +26,6 @@ pipeline {
archiveArtifacts 'srr.txt'
}
}
stage("buildMetrics") {
steps {
build 's432211-plots'
}
}
}
}