2018-12-04 23:18:49 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
|
|
|
|
subprocess.run("rm -rf _build*", shell=True)
|
|
|
|
subprocess.run("rm -rf bin/*", shell=True)
|
|
|
|
|
|
|
|
travis = False
|
|
|
|
if "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true":
|
|
|
|
travis = True
|
|
|
|
|
2019-09-25 05:54:26 +00:00
|
|
|
success_count = 0
|
|
|
|
fail_count = 0
|
2018-12-04 23:18:49 +00:00
|
|
|
exit_status = 0
|
|
|
|
|
2019-09-25 05:54:26 +00:00
|
|
|
build_format = '| {:30} | {:9} '
|
|
|
|
build_separator = '-' * 54
|
|
|
|
|
2018-12-04 23:18:49 +00:00
|
|
|
all_boards = []
|
|
|
|
for entry in os.scandir("src/boards"):
|
2019-04-24 05:03:26 +00:00
|
|
|
all_boards.append(entry.name)
|
2018-12-04 23:18:49 +00:00
|
|
|
|
|
|
|
#sha, version = build_info.get_version_info()
|
|
|
|
|
2019-05-03 07:05:14 +00:00
|
|
|
total_time = time.monotonic()
|
|
|
|
|
2019-09-25 05:54:26 +00:00
|
|
|
print(build_separator)
|
|
|
|
print((build_format + '| {:5} |').format('Board', 'Result', 'Time'))
|
|
|
|
print(build_separator)
|
|
|
|
|
2018-12-04 23:18:49 +00:00
|
|
|
for board in all_boards:
|
|
|
|
bin_directory = "bin/{}/".format(board)
|
|
|
|
os.makedirs(bin_directory, exist_ok=True)
|
|
|
|
|
|
|
|
start_time = time.monotonic()
|
2019-05-03 07:05:14 +00:00
|
|
|
make_result = subprocess.run("make -j 4 BOARD={} combinehex genpkg".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
2018-12-04 23:18:49 +00:00
|
|
|
build_duration = time.monotonic() - start_time
|
2019-09-25 05:54:26 +00:00
|
|
|
|
|
|
|
if make_result.returncode == 0:
|
|
|
|
success = "\033[32msucceeded\033[0m"
|
|
|
|
success_count += 1
|
|
|
|
else:
|
2018-12-04 23:18:49 +00:00
|
|
|
exit_status = make_result.returncode
|
2019-09-25 05:54:26 +00:00
|
|
|
success = "\033[31mfailed\033[0m "
|
|
|
|
fail_count += 1
|
2018-12-04 23:18:49 +00:00
|
|
|
|
|
|
|
for entry in os.scandir("_build-{}".format(board)):
|
|
|
|
for extension in ["zip", "hex"]:
|
2018-12-05 00:03:33 +00:00
|
|
|
if entry.name.endswith(extension) and "nosd" not in entry.name:
|
2018-12-04 23:18:49 +00:00
|
|
|
shutil.copy(entry.path, bin_directory)
|
|
|
|
|
|
|
|
if travis:
|
2018-12-05 00:52:54 +00:00
|
|
|
print('travis_fold:start:build-{}\\r'.format(board))
|
2019-09-25 05:54:26 +00:00
|
|
|
|
|
|
|
print((build_format + '| {:.2f}s |').format(board, success, build_duration))
|
|
|
|
|
2018-12-04 23:18:49 +00:00
|
|
|
if make_result.returncode != 0:
|
|
|
|
print(make_result.stdout.decode("utf-8"))
|
|
|
|
if travis:
|
2018-12-05 00:52:54 +00:00
|
|
|
print('travis_fold:end:build-{}\\r'.format(board))
|
2018-12-04 23:18:49 +00:00
|
|
|
|
2019-09-25 05:54:26 +00:00
|
|
|
# Build Summary
|
2019-05-03 07:05:14 +00:00
|
|
|
total_time = time.monotonic() - total_time
|
2019-09-25 05:54:26 +00:00
|
|
|
print(build_separator)
|
|
|
|
print("Build Sumamary: {} \033[32msucceeded\033[0m, {} \033[31mfailed\033[0m and took {:.2f}s".format(success_count, fail_count, total_time))
|
|
|
|
print(build_separator)
|
2019-05-03 07:05:14 +00:00
|
|
|
|
2018-12-04 23:18:49 +00:00
|
|
|
sys.exit(exit_status)
|