s407608-mlworkshops/Jenkinsfile

11 lines
240 B
Plaintext
Raw Normal View History

2019-04-26 11:01:13 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2019-04-26 11:14:15 +02:00
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 11:01:13 +02:00
}
}
}
}