Jenkins: SITL tests disable ninja build to reduce build parallelism

- test slaves have limited memory
This commit is contained in:
Daniel Agar 2020-09-24 12:49:43 -04:00
parent bbdc57a662
commit 60252dde08
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ pipeline {
sh 'make distclean'
sh 'ccache -s'
sh 'git fetch --tags'
sh 'make px4_sitl_default'
sh 'make px4_sitl_default sitl_gazebo'
sh 'NO_NINJA_BUILD=1 make px4_sitl_default'
sh 'NO_NINJA_BUILD=1 make px4_sitl_default sitl_gazebo'
sh 'make px4_sitl_default package'
sh 'ccache -s'
stash(name: "px4_sitl_package", includes: "build/px4_sitl_default/*.bz2")