s442676-mlworkshops/Jenkinsfile

11 lines
290 B
Plaintext
Raw Normal View History

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