Robin Mueller
f67be65941
All checks were successful
Rust/va416xx/pipeline/head This commit looks good
- svd2rust needs to be patched to solve some warnings
39 lines
868 B
Groovy
39 lines
868 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'
|
|
}
|
|
}
|
|
}
|
|
} |