40 lines
814 B
Plaintext
40 lines
814 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Clippy') {
|
||
|
agent {
|
||
|
dockerfile {
|
||
|
dir 'automation'
|
||
|
reuseNode true
|
||
|
}
|
||
|
}
|
||
|
steps {
|
||
|
sh 'cargo clippy'
|
||
|
}
|
||
|
}
|
||
|
stage('Rustfmt') {
|
||
|
agent {
|
||
|
dockerfile {
|
||
|
dir 'automation'
|
||
|
reuseNode true
|
||
|
}
|
||
|
}
|
||
|
steps {
|
||
|
sh 'cargo fmt'
|
||
|
}
|
||
|
}
|
||
|
stage('Check') {
|
||
|
agent {
|
||
|
dockerfile {
|
||
|
dir 'automation'
|
||
|
reuseNode true
|
||
|
}
|
||
|
}
|
||
|
steps {
|
||
|
sh 'cargo check'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|