va108xx-rs/automation/Jenkinsfile

44 lines
930 B
Plaintext
Raw Normal View History

pipeline {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Rust Toolchain Info') {
steps {
sh 'rustc --version'
}
}
stage('Clippy') {
2024-06-16 16:32:52 +02:00
steps {
sh 'cargo clippy --target thumbv6m-none-eabi'
}
}
stage('Rustfmt') {
2024-06-16 16:32:52 +02:00
steps {
sh 'cargo fmt'
}
}
stage('Docs') {
2024-06-16 16:32:52 +02:00
steps {
sh """
cargo +nightly doc --all-features --config 'build.rustdocflags=["--cfg", "docs_rs"]'
"""
}
}
stage('Check') {
2024-06-16 16:32:52 +02:00
steps {
sh 'cargo check --target thumbv6m-none-eabi'
}
}
stage('Check Examples') {
2024-06-16 16:32:52 +02:00
steps {
sh 'cargo check --target thumbv6m-none-eabi --examples'
}
}
}
}