mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 19:07:45 +08:00
Jenkins move style check to tests
This commit is contained in:
Vendored
+12
-11
@@ -1,17 +1,6 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent none
|
agent none
|
||||||
stages {
|
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') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
@@ -215,6 +204,18 @@ pipeline {
|
|||||||
stage('Test') {
|
stage('Test') {
|
||||||
parallel {
|
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') {
|
stage('clang tidy') {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
|
|||||||
Reference in New Issue
Block a user