Robin Mueller
1bac620853
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit
33 lines
547 B
Groovy
33 lines
547 B
Groovy
pipeline {
|
|
|
|
agent {
|
|
dockerfile {
|
|
dir 'automation'
|
|
reuseNode true
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Clippy') {
|
|
steps {
|
|
sh 'cargo clippy'
|
|
}
|
|
}
|
|
stage('Rustfmt') {
|
|
steps {
|
|
sh 'cargo fmt'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
sh 'cargo test'
|
|
}
|
|
}
|
|
stage('Check') {
|
|
steps {
|
|
sh 'cargo check'
|
|
}
|
|
}
|
|
}
|
|
}
|