Robin Mueller
5d1740efea
All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good
Monorepo for Rust support of VA416XX family of radiation hardened MCUs
44 lines
966 B
Groovy
44 lines
966 B
Groovy
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
dir 'automation'
|
|
reuseNode true
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Rust Toolchain Info') {
|
|
steps {
|
|
sh 'rustc --version'
|
|
}
|
|
}
|
|
stage('Clippy') {
|
|
steps {
|
|
sh 'cargo clippy --target thumbv7em-none-eabihf'
|
|
}
|
|
}
|
|
stage('Rustfmt') {
|
|
steps {
|
|
sh 'cargo fmt'
|
|
}
|
|
}
|
|
stage('Docs') {
|
|
steps {
|
|
sh """
|
|
RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options" cargo +nightly doc --all-features
|
|
"""
|
|
}
|
|
}
|
|
stage('Check') {
|
|
steps {
|
|
sh 'cargo check --target thumbv7em-none-eabihf'
|
|
}
|
|
}
|
|
stage('Check Examples') {
|
|
steps {
|
|
sh 'cargo check --target thumbv7em-none-eabihf --examples'
|
|
}
|
|
}
|
|
}
|
|
}
|