CI: move no-ninja builds to Jenkinsfile

This commit is contained in:
Julian Oes
2019-04-10 18:25:27 +02:00
parent 471d05381b
commit cd9b3d6b27
2 changed files with 68 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ pipeline {
]
def base_builds = [
target: ["px4_sitl_rtps", "NO_NINJA_BUILD=1 px4_sitl_default"],
target: ["px4_sitl_rtps"],
image: docker_images.base,
archive: false
]
@@ -42,13 +42,6 @@ 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,
@@ -68,7 +61,7 @@ pipeline {
]
def docker_builds = [
armhf_builds, base_builds, nuttx_builds_archive, nuttx_builds_noninja, nuttx_builds_other, rpi_builds, snapdragon_builds
armhf_builds, base_builds, nuttx_builds_archive, nuttx_builds_other, rpi_builds, snapdragon_builds
]
for (def build_type = 0; build_type < docker_builds.size(); build_type++) {