mlworkshops/Jenkinsfile

15 lines
247 B
Plaintext
Raw Normal View History

2019-04-25 23:47:05 +02:00
pipeline {
2019-04-26 01:21:12 +02:00
agent { dockerfile true }
2019-04-25 23:47:05 +02:00
stages {
2019-04-26 01:21:12 +02:00
stage('Test') {
2019-04-25 23:47:05 +02:00
steps {
2021-04-19 11:02:16 +02:00
sh 'make --version > make.log'
2019-04-26 02:10:29 +02:00
sh 'sclite --help || true'
2021-04-19 10:56:02 +02:00
echo "Experimenting!"
2021-04-19 11:02:16 +02:00
archiveArtifacts 'make.log'
2019-04-25 23:47:05 +02:00
}
}
}
}
2019-04-26 01:21:12 +02:00