try cross-compilation in docker
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit

This commit is contained in:
2022-08-16 10:28:06 +02:00
parent 3e80dd314a
commit 8f20b1962c
2 changed files with 6 additions and 1 deletions

View File

@ -28,5 +28,10 @@ pipeline {
sh 'cargo check'
}
}
stage('Check Cross') {
steps {
sh 'cross check --target thumbv7em-none-eabihf --no-default-features'
}
}
}
}