s460941-metrics/Jenkinsfile

11 lines
259 B
Plaintext
Raw Normal View History

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