lighthouse/Jenkinsfile
2019-02-07 17:39:48 +11:00

16 lines
234 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
stage('Test') {
steps {
sh 'cargo test --all'
}
}
}
}