lighthouse/Jenkinsfile

16 lines
234 B
Plaintext
Raw Normal View History

2019-01-09 08:44:37 +00:00
pipeline {
agent { dockerfile true }
stages {
stage('Build') {
2019-01-09 08:44:37 +00:00
steps {
sh 'cargo build'
}
}
stage('Test') {
steps {
sh 'cargo test --all'
}
}
2019-01-09 08:44:37 +00:00
}
}