update jenkins CI
Rust/spacepackets/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2023-01-10 23:22:09 +01:00
parent d972dd5223
commit 8ffa7efa4d
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C
1 changed files with 9 additions and 4 deletions

View File

@ -15,17 +15,22 @@ pipeline {
}
stage('Rustfmt') {
steps {
sh 'cargo fmt'
sh 'cargo fmt --all --check'
}
}
stage('Test') {
steps {
sh 'cargo test'
sh 'cargo test --all-features'
}
}
stage('Check') {
stage('Check with all features') {
steps {
sh 'cargo check'
sh 'cargo check --all-features'
}
}
stage('Check with no features') {
steps {
sh 'cargo check --no-default-features'
}
}
stage('Check Cross Embedded Bare Metal') {