spacepackets/automation/Jenkinsfile
Robin Mueller 1bac620853
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit
maybe this works?
2022-08-16 10:23:39 +02:00

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'
}
}
}
}