2020-04-03 13:00:25 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2020-04-22 16:03:12 +02:00
|
|
|
stage('CopyArtifacts') {
|
2020-04-03 13:00:25 +02:00
|
|
|
steps {
|
2020-04-22 16:03:12 +02:00
|
|
|
copyArtifacts filter: 'wikinews_results.tsv',fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
2020-04-03 13:00:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-22 15:59:59 +02:00
|
|
|
}
|