Browse Source

Jenkins move style check to tests

sbg
Daniel Agar 7 years ago
parent
commit
cebe7add8b
  1. 23
      Jenkinsfile

23
Jenkinsfile vendored

@ -1,17 +1,6 @@ @@ -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 { @@ -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 {

Loading…
Cancel
Save