s441471-mlworkshops/Jenkinsfile
2019-04-26 11:04:19 +02:00

11 lines
285 B
Groovy

pipeline {
agent any
stages {
stage('ASR-eval copy artifacts') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh 'ls -lah'
}
}
}
}