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