This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
va416xx/automation/Jenkinsfile
Robin Mueller 2cdc2a8128
All checks were successful
Rust/va416xx/pipeline/head This commit looks good
reenabled clippy in CI/CD
- Bumped version to v0.1.1
2021-12-10 18:08:51 +01:00

39 lines
844 B
Groovy

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 --target thumbv7em-none-eabihf'
}
}
}
}