rusty-numbers/Jenkinsfile
Timothy Warren fce5d42be2
All checks were successful
timw4mail/rusty-numbers/pipeline/head This commit looks good
Attempt to solve a CI permissions issue take 5
2020-03-04 16:13:42 -05:00

31 lines
534 B
Groovy

pipeline {
agent {
docker {
image 'rust:latest'
args '--privileged'
}
}
stages {
stage('Check') {
steps {
sh "cargo check"
}
}
stage('Test') {
steps {
sh "cargo test"
}
}
stage('Coverage') {
steps {
sh "cargo install cargo-tarpaulin"
sh "make generate-coverage"
}
}
}
post {
always {
cobertura coberturaReportFile: 'cobertura.xml'
}
}
}