Skip to content

Commit 0acd197

Browse files
committed
update debug output
1 parent 7a35fea commit 0acd197

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

.github/workflows/documentation.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,13 @@ jobs:
178178
with:
179179
name: Google bloaty
180180
path: tools/bloaty/build
181-
- name: Debug
182-
run: ls firmware
183181
- name: Run bloaty
184182
run: |
185183
mkdir -p docs/assets/tables
186184
chmod +x tools/bloaty/build/bloaty
187185
tools/bloaty/build/bloaty firmware/firmware_v16.elf -d compileunits --csv -n 0 > docs/assets/tables/bloaty_v16.csv
188186
tools/bloaty/build/bloaty firmware/firmware_v201.elf -d compileunits --csv -n 0 > docs/assets/tables/bloaty_v201.csv
189187
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
192188
- name: Evaluate and create reports
193189
run: python tests/benchmarks/scripts/eval_firmware_size.py
194190
- name: Upload reports

tests/benchmarks/scripts/eval_firmware_size.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,6 @@ 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-
4031
# categorize data
4132

4233
def categorize_table(df):

0 commit comments

Comments
 (0)