s407604-mlworkshops2/Jenkinsfile
2019-04-26 12:43:57 +02:00

12 lines
230 B
Groovy

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