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