add docs step in jenkinsfile
Rust/spacepackets/pipeline/head There was a failure building this commit Details

This commit is contained in:
Robin Müller 2023-01-11 00:16:09 +01:00
parent b68f1c3752
commit 76ea418711
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C
1 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,11 @@ pipeline {
sh 'cargo clippy'
}
}
stage('Docs') {
steps {
sh 'cargo +nightly doc --all-features'
}
}
stage('Rustfmt') {
steps {
sh 'cargo fmt --all --check'