b6884ec39d
Some checks failed
timw4mail/rusty-numbers/pipeline/head There was a failure building this commit
31 lines
538 B
Groovy
31 lines
538 B
Groovy
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
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'
|
|
}
|
|
}
|
|
} |