Browse Source

Jenkins check style first (#9197)

sbg
Daniel Agar 7 years ago committed by GitHub
parent
commit
60a7ce731d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      Jenkinsfile

24
Jenkinsfile vendored

@ -2,6 +2,17 @@ pipeline { @@ -2,6 +2,17 @@ pipeline {
agent none
stages {
stage('Style Check') {
agent {
docker { image 'px4io/px4-dev-base:2017-12-30' }
}
steps {
sh 'make submodulesclean'
sh 'make check_format'
}
}
stage('Build') {
steps {
script {
@ -248,19 +259,6 @@ pipeline { @@ -248,19 +259,6 @@ pipeline {
stage('Test') {
parallel {
stage('check style') {
agent {
docker {
image 'px4io/px4-dev-base:2017-12-30'
}
}
steps {
sh 'export'
sh 'make distclean'
sh 'make check_format'
}
}
stage('clang analyzer') {
agent {
docker {

Loading…
Cancel
Save