s434576-mlworkshops/Jenkinsfile

11 lines
252 B
Plaintext
Raw Normal View History

2019-04-26 10:48:53 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2019-04-26 11:01:58 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 10:48:53 +02:00
}
}
}
}