diff options
| author | gsnxp <[email protected]> | 2020-02-17 13:06:44 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-02-17 13:06:44 -0800 |
| commit | 616562a48aa1d8ce2f4ca71f6e780a8bec9fb5eb (patch) | |
| tree | 709e6aaff866c54087d9fc0f6ee80270394ccda9 /tools | |
| parent | 6b3eb5f17386d21b2b9f0bad2d1c06b73f07cb5f (diff) | |
| parent | 0d3a7257f54db8b867be35d80b9c1fda85f656d3 (diff) | |
Merge pull request #1 from hathach/master
syncing to source repo
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_all.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index 2ea898f45..97294a9a3 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -4,10 +4,6 @@ import sys import subprocess import time -travis = False -if "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true": - travis = True - success_count = 0 fail_count = 0 exit_status = 0 @@ -59,16 +55,10 @@ for example in all_examples: success = "\033[31mfailed\033[0m " fail_count += 1 - if travis: - print('travis_fold:start:build-{}-{}\\r'.format(example, board)) - print((build_format + '| {:.2f}s |').format(example, board, success, build_duration)) if build_result.returncode != 0: print(build_result.stdout.decode("utf-8")) - if travis: - print('travis_fold:end:build-{}-{}\\r'.format(example, board)) - # FreeRTOS example # example = 'cdc_msc_hid_freertos' # board = 'pca10056' |
