mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
9879e4aaa7
On Travis CI often builds fail spuriously. This PR lets `make buildtest` retry the build once.
114 lines
3.9 KiB
Python
Executable File
114 lines
3.9 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
from __future__ import print_function
|
|
|
|
from itertools import groupby
|
|
from os import devnull, environ, listdir
|
|
from os.path import abspath, dirname, isfile, join
|
|
from subprocess import CalledProcessError, check_call, PIPE, Popen
|
|
from sys import exit, stdout
|
|
|
|
riotbase = environ.get('RIOTBASE') or abspath(join(dirname(abspath(__file__)), '../' * 3))
|
|
|
|
null = open(devnull, 'w', 0)
|
|
|
|
success = []
|
|
failed = []
|
|
exceptions = []
|
|
|
|
def is_tracked(application_folder):
|
|
if not isfile(join(application_folder, 'Makefile')):
|
|
return False
|
|
try:
|
|
check_call(('git', 'ls-files', '--error-unmatch', 'Makefile'),
|
|
stdin=null, stdout=null, stderr=null, cwd=application_folder)
|
|
except CalledProcessError:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
def get_lines(readline, prefix):
|
|
while 1:
|
|
result = readline()
|
|
if not result:
|
|
break
|
|
elif not result.startswith(prefix):
|
|
continue
|
|
|
|
result = result[len(prefix):].rstrip().split(' .. ')[::-1]
|
|
if (len(result) == 2) or (len(result) == 3 and 'retrying' in result[1]):
|
|
stdout.write('.')
|
|
stdout.flush()
|
|
yield (' .. '.join(result[:-1]), result[-1])
|
|
|
|
for folder in ('examples', 'tests'):
|
|
print('Building all applications in: \033[1;34m{}\033[0m'.format(folder))
|
|
|
|
applications = listdir(join(riotbase, folder))
|
|
applications = filter(lambda app: is_tracked(join(riotbase, folder, app)), applications)
|
|
applications = sorted(applications)
|
|
|
|
subprocess_env = environ.copy()
|
|
subprocess_env['RIOT_DO_RETRY'] = '1'
|
|
|
|
for nth, application in enumerate(applications, 1):
|
|
stdout.write('\tBuilding application: \033[1;34m{}\033[0m ({}/{}) '.format(application, nth, len(applications)))
|
|
stdout.flush()
|
|
try:
|
|
subprocess = Popen(('make', 'buildtest'),
|
|
bufsize=1, stdin=null, stdout=PIPE, stderr=null,
|
|
cwd=join(riotbase, folder, application),
|
|
env=subprocess_env)
|
|
|
|
lines = get_lines(subprocess.stdout.readline, 'Building for ')
|
|
lines = groupby(sorted(lines), lambda (outcome, board): outcome)
|
|
|
|
print()
|
|
for group, results in lines:
|
|
print('\t\t{}: {}'.format(group, ', '.join(sorted(board for outcome, board in results))))
|
|
|
|
returncode = subprocess.wait()
|
|
if returncode == 0:
|
|
success.append(application)
|
|
else:
|
|
failed.append(application)
|
|
subprocess_env.pop('RIOT_DO_RETRY', None)
|
|
except Exception, e:
|
|
print('\n\t\tException: {}'.format(e))
|
|
exceptions.append(application)
|
|
finally:
|
|
try:
|
|
subprocess.kill()
|
|
except:
|
|
pass
|
|
|
|
print('Outcome:')
|
|
for color, group in (('2', 'success'), ('1', 'failed'), ('4', 'exceptions')):
|
|
applications = locals()[group]
|
|
if applications:
|
|
print('\t\033[1;3{}m{}\033[0m: {}'.format(color, group, ', '.join(applications)))
|
|
|
|
if exceptions:
|
|
exit(2)
|
|
elif failed:
|
|
exit(1)
|
|
else:
|
|
exit(0)
|