s460941-metrics/Jenkinsfile

12 lines
277 B
Plaintext
Raw Normal View History

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:11:24 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-22 16:23:26 +02:00
archiveArtifacts 'wikiniews_results.tsv'
2020-04-03 13:00:25 +02:00
}
}
}
2020-04-22 15:59:59 +02:00
}