reenabled clippy in CI/CD
All checks were successful
Rust/va416xx/pipeline/head This commit looks good

- Bumped version to v0.1.1
This commit is contained in:
2021-12-10 18:03:26 +01:00
parent 45b1680254
commit 2cdc2a8128
4 changed files with 35 additions and 30 deletions

View File

@ -2,17 +2,17 @@ pipeline {
agent any
stages {
// stage('Clippy') {
// agent {
// dockerfile {
// dir 'automation'
// reuseNode true
// }
// }
// steps {
// sh 'cargo clippy'
// }
// }
stage('Clippy') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo clippy'
}
}
stage('Rustfmt') {
agent {
dockerfile {