s442673-mlworkshops/Jenkinsfile

13 lines
254 B
Plaintext
Raw Normal View History

2019-04-26 13:17:25 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2019-04-26 13:48:18 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 13:17:25 +02:00
}
}
}
2019-04-26 13:12:07 +02:00
}