s407604-mlworkshops2/Jenkinsfile

12 lines
230 B
Plaintext
Raw Normal View History

2019-04-26 12:29:36 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2019-04-26 12:43:57 +02:00
copyArtifacts fingerprintArtifacts: true, projectName:
'ASR-eval', selector: lastSuccessful()
2019-04-26 12:29:36 +02:00
}
}
}
}