spacepackets/automation/Jenkinsfile

51 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-08-05 00:44:41 +02:00
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'
}
}
2022-08-16 10:20:00 +02:00
stage('Test') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo check'
}
}
2022-08-05 00:44:41 +02:00
stage('Check') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo check'
}
}
}
}