pipeline {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
stages {
stage('Clippy') {
steps {
sh 'cargo clippy'
stage('Rustfmt') {
sh 'cargo fmt'
stage('Docs') {
sh 'cargo +nightly doc'
stage('Check') {
sh 'cargo check --target thumbv6m-none-eabi'
stage('Check Examples') {
sh 'cargo check --target thumbv6m-none-eabi --examples'