s441471-mlworkshops/Jenkinsfile

11 lines
285 B
Plaintext
Raw Normal View History

2019-04-26 10:44:13 +02:00
pipeline {
agent any
stages {
2019-04-26 11:01:42 +02:00
stage('ASR-eval copy artifacts') {
2019-04-26 10:44:13 +02:00
steps {
2019-04-26 11:01:42 +02:00
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 11:04:19 +02:00
sh 'ls -lah'
2019-04-26 10:44:13 +02:00
}
}
}
}