Browse Source

Jenkins run bloaty on px4fmu nuttx builds

sbg
Daniel Agar 7 years ago
parent
commit
0e972fc6c2
  1. 4
      Jenkinsfile

4
Jenkinsfile vendored

@ -23,6 +23,8 @@ pipeline {
sh "ccache -z" sh "ccache -z"
sh "git fetch --tags" sh "git fetch --tags"
sh "make nuttx_${node_name}_default" sh "make nuttx_${node_name}_default"
sh "bloaty -n 100 -d symbols -s file `find . -name *.elf`"
sh "bloaty -n 100 -d compileunits -s file `find . -name *.elf`"
sh "make nuttx_${node_name}_rtps" sh "make nuttx_${node_name}_rtps"
sh "make sizes" sh "make sizes"
sh "ccache -s" sh "ccache -s"
@ -49,6 +51,8 @@ pipeline {
sh "git fetch --tags" sh "git fetch --tags"
sh "make px4io-v2_default" sh "make px4io-v2_default"
sh "make nuttx_px4fmu-v2_default" sh "make nuttx_px4fmu-v2_default"
sh "bloaty -n 100 -d symbols -s file `find . -name *.elf`"
sh "bloaty -n 100 -d compileunits -s file `find . -name *.elf`"
sh "make nuttx_px4fmu-v2_lpe" sh "make nuttx_px4fmu-v2_lpe"
sh "make nuttx_px4fmu-v3_default" sh "make nuttx_px4fmu-v3_default"
sh "make nuttx_px4fmu-v3_rtps" sh "make nuttx_px4fmu-v3_rtps"

Loading…
Cancel
Save