s460941-metrics/Jenkinsfile
2020-04-22 16:11:24 +02:00

11 lines
234 B
Groovy

pipeline {
agent any
stages {
stage('CopyArtifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}