Jenkins move style check to tests

This commit is contained in:
Daniel Agar 2017-12-15 09:47:49 -05:00
parent d7aa5df3cd
commit cebe7add8b
1 changed files with 12 additions and 11 deletions

23
Jenkinsfile vendored
View File

@ -1,17 +1,6 @@
pipeline {
agent none
stages {
stage('Quality Checks') {
agent {
docker {
image 'px4io/px4-dev-base:2017-10-23'
args '-e CI=true'
}
}
steps {
sh 'make check_format'
}
}
stage('Build') {
steps {
@ -215,6 +204,18 @@ pipeline {
stage('Test') {
parallel {
stage('check style') {
agent {
docker {
image 'px4io/px4-dev-base:2017-10-23'
args '-e CI=true'
}
}
steps {
sh 'make check_format'
}
}
stage('clang tidy') {
agent {
docker {