From f74aab33ad2c12402e3378b9c9b098b6169ff4da Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Wed, 10 Apr 2019 10:19:12 +0200 Subject: [PATCH] CI: also build two targets without ninja This should prevent future regressions when compiling with "Unix Makefiles" or others instead of ninja as the generator behind cmake. --- .ci/Jenkinsfile-compile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile-compile b/.ci/Jenkinsfile-compile index 27370b47dc..3aa56342e3 100644 --- a/.ci/Jenkinsfile-compile +++ b/.ci/Jenkinsfile-compile @@ -42,6 +42,13 @@ pipeline { archive: true ] + def nuttx_builds_noninja = [ + target: [ + "NO_NINJA_BUILD=1 px4_fmu-v2_default", "NO_NINJA_BUILD=1 px4_fmu-v5_default"], + image: docker_images.nuttx, + archive: false + ] + def nuttx_builds_other = [ target: ["px4_cannode-v1_default", "px4_esc-v1_default", "thiemar_s2740vc-v1_default"], image: docker_images.nuttx, @@ -61,7 +68,7 @@ pipeline { ] def docker_builds = [ - armhf_builds, base_builds, nuttx_builds_archive, nuttx_builds_other, rpi_builds, snapdragon_builds + armhf_builds, base_builds, nuttx_builds_archive, nuttx_builds_noninja, nuttx_builds_other, rpi_builds, snapdragon_builds ] for (def build_type = 0; build_type < docker_builds.size(); build_type++) {