This commit is contained in:
Cezary 2020-05-04 23:56:07 +02:00
parent ee7e13bc69
commit 82d6afd28f

9
Jenkinsfile vendored
View File

@ -9,7 +9,8 @@ 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') {
@ -26,6 +27,10 @@ pipeline {
archiveArtifacts 'srr.txt'
}
}
stage("buildMetrics") {
steps {
build 's432211-plots'
}
}
}
}