added test stage in jenkinsfile
Rust/spacepackets/pipeline/head There was a failure building this commit

This commit is contained in:
2022-08-16 10:20:00 +02:00
parent 388a8ba616
commit 41fa073c74
2 changed files with 15 additions and 0 deletions
+11
View File
@@ -24,6 +24,17 @@ pipeline {
sh 'cargo fmt'
}
}
stage('Test') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo check'
}
}
stage('Check') {
agent {
dockerfile {