|
|
|
@ -21,7 +21,6 @@ pipeline {
@@ -21,7 +21,6 @@ pipeline {
|
|
|
|
|
sh 'ccache -z' |
|
|
|
|
sh 'make px4_sitl_default' |
|
|
|
|
sh 'ccache -s' |
|
|
|
|
sh 'make tests' |
|
|
|
|
} |
|
|
|
|
post { |
|
|
|
|
always { |
|
|
|
@ -51,6 +50,27 @@ pipeline {
@@ -51,6 +50,27 @@ pipeline {
|
|
|
|
|
} |
|
|
|
|
} // stage px4_fmu-v5_default |
|
|
|
|
|
|
|
|
|
stage('sitl tests (OSX)') { |
|
|
|
|
agent { |
|
|
|
|
label 'mac' |
|
|
|
|
} |
|
|
|
|
environment { |
|
|
|
|
CCACHE_BASEDIR = "${env.WORKSPACE}" |
|
|
|
|
} |
|
|
|
|
steps { |
|
|
|
|
sh 'export' |
|
|
|
|
sh 'make distclean' |
|
|
|
|
sh 'ccache -z' |
|
|
|
|
sh 'make tests' |
|
|
|
|
sh 'ccache -s' |
|
|
|
|
} |
|
|
|
|
post { |
|
|
|
|
always { |
|
|
|
|
sh 'make distclean' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} // stage sitl tests |
|
|
|
|
|
|
|
|
|
} // parallel |
|
|
|
|
} // stage Build |
|
|
|
|
|
|
|
|
|