s407323-mlworkshops/Jenkinsfile

16 lines
368 B
Plaintext
Raw Normal View History

2019-04-26 11:05:16 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
2019-04-26 11:29:26 +02:00
stage('Stage 2') {
steps {
2019-04-26 11:29:26 +02:00
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: 'ASR-eval/'
}
2019-04-26 11:29:26 +02:00
}
2019-04-26 11:05:16 +02:00
}
}