mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
* refactor ekf analysis part 1: move plotting to functions * add plot_check_flags plot function * put plots in seperate file * use object-oriented programming for plotting * move functions for post processing and pdf report creation to new files * add in_air_detector and description as a csv file * refactor metrics and checks into separate functions * refactor metrics into seperate file, seperate plotting * ecl-ekf tools: re-structure folder and move results table generation * ecl-ekf-tool: fix imports and test_results_table * ecl-ekf tools: bugfix output observer tracking error plot * ecl-ekf-tools: update batch processing to new api, fix exception handling * ecl-ekf-tools: use correct in_air_detector * ecl-ekf-tools: rename csv file containing the bare test results table * ecl-tools: refactor for improving readability * ecl-ekf tools: small plotting bugfixes * ecl-ekf tools: small bugfixes in_air time, on_ground_trans, filenames * ecl-ekf-tools: fix amber metric bug * ecl-ekf-tools: remove custom function in inairdetector * ecl-ekf-tools: remove import of pandas * ecl-ekf-tools: add python interpreter to the script start * ecl-ekf-tools pdf_report: fix python interpreter line * px4-dev-ros-kinetic: update container tag to 2019-02-13 * ecl-ekf-tools python interpreter line: call python3 bin directly * ecl-ekf-tools: change airtime from namedtuple to class for python 3.5 * ecl-ekf-tools: update docker image px4-dev-ros-kinetic * ecl-ekf-tools: fix memory leak by correctly closing matplotlib figures
154 lines
5.0 KiB
Groovy
154 lines
5.0 KiB
Groovy
#!/usr/bin/env groovy
|
|
|
|
pipeline {
|
|
agent none
|
|
stages {
|
|
|
|
stage('Build') {
|
|
steps {
|
|
script {
|
|
def build_nodes = [:]
|
|
def docker_images = [
|
|
armhf: "px4io/px4-dev-armhf:2019-02-09",
|
|
base: "px4io/px4-dev-base:2019-02-09",
|
|
nuttx: "px4io/px4-dev-nuttx:2019-02-09",
|
|
ros: "px4io/px4-dev-ros-kinetic:2019-02-14",
|
|
rpi: "px4io/px4-dev-raspi:2019-02-09",
|
|
snapdragon: "lorenzmeier/px4-dev-snapdragon:2018-09-12"
|
|
]
|
|
|
|
def armhf_builds = [
|
|
target: ["aerotenna_ocpoc_ubuntu"],
|
|
image: docker_images.armhf,
|
|
archive: false
|
|
]
|
|
|
|
def base_builds = [
|
|
target: ["px4_sitl_rtps"],
|
|
image: docker_images.base,
|
|
archive: false
|
|
]
|
|
|
|
def nuttx_builds_archive = [
|
|
target: [
|
|
"px4_fmu-v2_default", "px4_fmu-v2_fixedwing", "px4_fmu-v2_lpe", "px4_fmu-v2_multicopter", "px4_fmu-v2_rover", "px4_fmu-v2_test",
|
|
"px4_fmu-v3_default",
|
|
"px4_fmu-v4_default",
|
|
"px4_fmu-v4pro_default",
|
|
"px4_fmu-v5_default", "px4_fmu-v5_fixedwing", "px4_fmu-v5_multicopter", "px4_fmu-v5_rover", "px4_fmu-v5_rtps", "px4_fmu-v5_stackcheck",
|
|
"intel_aerofc-v1_default", "auav_x21_default", "av_x-v1_default", "bitcraze_crazyflie_default", "airmind_mindpx-v2_default",
|
|
"nxp_fmuk66-v3_default", "omnibus_f4sd_default"],
|
|
image: docker_images.nuttx,
|
|
archive: true
|
|
]
|
|
|
|
def nuttx_builds_other = [
|
|
target: ["px4_cannode-v1_default", "px4_esc-v1_default", "thiemar_s2740vc-v1_default"],
|
|
image: docker_images.nuttx,
|
|
archive: false
|
|
]
|
|
|
|
def rpi_builds = [
|
|
target: ["emlid_navio2_cross", "parrot_bebop_default"],
|
|
image: docker_images.rpi,
|
|
archive: false
|
|
]
|
|
|
|
def snapdragon_builds = [
|
|
target: ["atlflight_eagle_qurt-default", "atlflight_eagle_default"],
|
|
image: docker_images.snapdragon,
|
|
archive: false
|
|
]
|
|
|
|
def docker_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++) {
|
|
for (def build_target = 0; build_target < docker_builds[build_type].target.size(); build_target++) {
|
|
build_nodes.put(docker_builds[build_type].target[build_target],
|
|
createBuildNode(docker_builds[build_type].archive, docker_builds[build_type].image, docker_builds[build_type].target[build_target])
|
|
)
|
|
}
|
|
}
|
|
|
|
parallel build_nodes
|
|
|
|
} // script
|
|
} // steps
|
|
} // stage Build
|
|
|
|
// TODO: actually upload artifacts to S3
|
|
stage('S3 Upload') {
|
|
agent {
|
|
docker { image 'px4io/px4-dev-base:2019-02-09' }
|
|
}
|
|
options {
|
|
skipDefaultCheckout()
|
|
}
|
|
when {
|
|
anyOf {
|
|
branch 'master'
|
|
branch 'beta'
|
|
branch 'stable'
|
|
branch 'pr-jenkins' // for testing
|
|
}
|
|
}
|
|
steps {
|
|
sh 'echo "uploading to S3"'
|
|
}
|
|
}
|
|
|
|
} // stages
|
|
environment {
|
|
CCACHE_DIR = '/tmp/ccache'
|
|
CI = true
|
|
}
|
|
options {
|
|
buildDiscarder(logRotator(numToKeepStr: '2', artifactDaysToKeepStr: '14'))
|
|
timeout(time: 60, unit: 'MINUTES')
|
|
}
|
|
}
|
|
|
|
def createBuildNode(Boolean archive, String docker_image, String target) {
|
|
return {
|
|
|
|
// TODO: fix the snapdragon image
|
|
bypass_entrypoint = ''
|
|
if (docker_image == 'lorenzmeier/px4-dev-snapdragon:2018-09-12') {
|
|
bypass_entrypoint = ' --entrypoint=""'
|
|
}
|
|
|
|
node {
|
|
docker.withRegistry('https://registry.hub.docker.com', 'docker_hub_dagar') {
|
|
docker.image(docker_image).inside('-e CCACHE_BASEDIR=${WORKSPACE} -v ${CCACHE_DIR}:${CCACHE_DIR}:rw' + bypass_entrypoint) {
|
|
stage(target) {
|
|
try {
|
|
sh('export')
|
|
checkout(scm)
|
|
sh('make distclean')
|
|
sh('git fetch --tags')
|
|
sh('ccache -z')
|
|
sh('make ' + target)
|
|
sh('ccache -s')
|
|
sh('make sizes')
|
|
if (archive) {
|
|
archiveArtifacts(allowEmptyArchive: false, artifacts: 'build/*/*.px4, build/*/*.elf, build/*/*.bin', fingerprint: true, onlyIfSuccessful: true)
|
|
}
|
|
sh('make ' + target + ' package')
|
|
archiveArtifacts(allowEmptyArchive: true, artifacts: 'build/*/*.tar.bz2', fingerprint: true, onlyIfSuccessful: true)
|
|
archiveArtifacts(allowEmptyArchive: true, artifacts: 'build/*/*.deb', fingerprint: true, onlyIfSuccessful: true)
|
|
}
|
|
catch (exc) {
|
|
throw (exc)
|
|
}
|
|
finally {
|
|
sh('make distclean')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|