Skip to content

Commit 3dd9471

Browse files
committed
fix workflows
1 parent 60f2d56 commit 3dd9471

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/documentation.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,17 @@ jobs:
178178
with:
179179
name: Google bloaty
180180
path: tools/bloaty/build
181+
- name: Debug
182+
run: ls docs/assets/tables
181183
- name: Run bloaty
182184
run: |
183185
mkdir -p docs/assets/tables
184186
chmod +x tools/bloaty/build/bloaty
185187
tools/bloaty/build/bloaty firmware/firmware_v16.elf -d compileunits --csv -n 0 > docs/assets/tables/bloaty_v16.csv
186188
tools/bloaty/build/bloaty firmware/firmware_v201.elf -d compileunits --csv -n 0 > docs/assets/tables/bloaty_v201.csv
187189
tools/bloaty/build/bloaty firmware/firmware_v16_v201.elf -d compileunits --csv -n 0 > docs/assets/tables/bloaty_v16_v201.csv
190+
- name: Debug
191+
run: ls docs/assets/tables
188192
- name: Evaluate and create reports
189193
run: python tests/benchmarks/scripts/eval_firmware_size.py
190194
- name: Upload reports

tests/benchmarks/scripts/eval_firmware_size.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ def load_compilation_units(fn):
2828
cunits = pd.merge(cunits_v16, cunits_v201, on=COLUMN_CUNITS, how='outer')
2929
cunits = pd.merge(cunits, cunits_v16_v201, on=COLUMN_CUNITS, how='outer')
3030

31+
print("cunits_v16")
32+
print(cunits_v16)
33+
print("cunits_v201")
34+
print(cunits_v201)
35+
print("cunits_v16_v201")
36+
print(cunits_v16_v201)
37+
print("cunits")
38+
print(cunits)
39+
3140
# categorize data
3241

3342
def categorize_table(df):

0 commit comments

Comments
 (0)