now this should work
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2022-08-16 10:50:21 +02:00
parent 20d5baaa0d
commit dbe0e3062f
2 changed files with 8 additions and 2 deletions

View File

@ -28,10 +28,15 @@ pipeline {
sh 'cargo check'
}
}
stage('Check Cross') {
stage('Check Cross Embedded Bare Metal') {
steps {
sh 'cargo check --target thumbv7em-none-eabihf --no-default-features'
}
}
stage('Check Cross Embedded Linux') {
steps {
sh 'cargo check --target armv7-unknown-linux-gnueabihf'
}
}
}
}