Skip to content

Commit 4419b48

Browse files
committed
Merge branch 'master' of github.com:adafruit/ci-arduino
2 parents f633b65 + 66206d5 commit 4419b48

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build_platform.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ def test_examples_in_folder(folderpath):
310310
global success
311311
for example in sorted(os.listdir(folderpath)):
312312
examplepath = folderpath+"/"+example
313+
ColorPrint.print_info(folderpath, examplepath)
313314
if os.path.isdir(examplepath):
314315
test_examples_in_folder(examplepath)
315316
continue
@@ -359,6 +360,9 @@ def test_examples_in_folder(folderpath):
359360
out, err = proc.communicate()
360361
r = 1
361362

363+
os.system("ls -lR "+BUILD_DIR+"/build")
364+
os.system("ls -lR "+folderpath)
365+
362366
if r == 0 and not (err and BUILD_WALL == True):
363367
ColorPrint.print_pass(CHECK)
364368
if err:
@@ -374,6 +378,7 @@ def test_examples_in_folder(folderpath):
374378
if filename is None:
375379
success = 1 # failure
376380
if IS_LEARNING_SYS:
381+
ColorPrint.print_info(filename.split, filename.split("/"))
377382
fqbnpath, uf2file = filename.split("/")[-2:]
378383
os.makedirs(BUILD_DIR+"/build", exist_ok=True)
379384
os.makedirs(BUILD_DIR+"/build/"+fqbnpath, exist_ok=True)

0 commit comments

Comments
 (0)