Attempt to solve a CI permissions issue take 4
timw4mail/rusty-numbers/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-03-04 16:12:25 -05:00
parent ccdced1d79
commit b6884ec39d
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -1,6 +1,7 @@
pipeline {
agent {
dockerfile {
image 'rust:latest'
args '--privileged'
}
}
@ -17,6 +18,7 @@ pipeline {
}
stage('Coverage') {
steps {
sh "cargo install cargo-tarpaulin"
sh "make generate-coverage"
}
}