mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 01:18:29 -04:00
.github: produce elf_diff output for Plane
This commit is contained in:
parent
ffa2bba35c
commit
495ec52a00
14
.github/workflows/test_size.yml
vendored
14
.github/workflows/test_size.yml
vendored
@ -106,3 +106,17 @@ jobs:
|
|||||||
cd pr/
|
cd pr/
|
||||||
python3 -m pip install -U tabulate
|
python3 -m pip install -U tabulate
|
||||||
Tools/scripts/pretty_diff_size.py -m $GITHUB_WORKSPACE/master_bin -s $GITHUB_WORKSPACE/pr_bin
|
Tools/scripts/pretty_diff_size.py -m $GITHUB_WORKSPACE/master_bin -s $GITHUB_WORKSPACE/pr_bin
|
||||||
|
|
||||||
|
- name: elf_diff compare with Master
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
python3 -m pip install -U weasyprint elf_diff
|
||||||
|
python3 -m elf_diff --bin_prefix=arm-none-eabi- $GITHUB_WORKSPACE/master_bin/arduplane $GITHUB_WORKSPACE/pr_bin/arduplane
|
||||||
|
tar cf multipage_pair_report.tar multipage_pair_report
|
||||||
|
|
||||||
|
- name: Archive elf_diff output
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: elf_diff
|
||||||
|
path: multipage_pair_report.tar
|
||||||
|
retention-days: 14
|
||||||
|
Loading…
Reference in New Issue
Block a user