s421818-mlworkshops/Jenkinsfile

12 lines
324 B
Plaintext
Raw Normal View History

2020-04-03 11:24:17 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2020-04-03 11:49:07 +02:00
sh 'git checkout -f origin/master'
2020-04-03 11:53:21 +02:00
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 11:43:27 +02:00
echo 'Hello world!'
2020-04-03 11:24:17 +02:00
}
}
}
}