2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2014-08-09 21:33:00 +00:00
|
|
|
# Copyright (c) 2014 Google, Inc
|
|
|
|
#
|
|
|
|
|
2023-07-19 23:49:09 +00:00
|
|
|
"""Implementation the bulider threads
|
|
|
|
|
|
|
|
This module provides the BuilderThread class, which handles calling the builder
|
|
|
|
based on the jobs provided.
|
|
|
|
"""
|
|
|
|
|
2014-08-09 21:33:00 +00:00
|
|
|
import errno
|
|
|
|
import glob
|
2023-07-19 23:49:16 +00:00
|
|
|
import io
|
2014-08-09 21:33:00 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
2018-04-08 11:14:11 +00:00
|
|
|
import sys
|
2014-08-09 21:33:00 +00:00
|
|
|
import threading
|
|
|
|
|
2022-01-22 12:07:33 +00:00
|
|
|
from buildman import cfgutil
|
2020-04-18 00:09:04 +00:00
|
|
|
from patman import gitutil
|
2023-02-24 01:18:04 +00:00
|
|
|
from u_boot_pylib import command
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2015-02-06 05:06:13 +00:00
|
|
|
RETURN_CODE_RETRY = -1
|
2020-12-17 00:24:17 +00:00
|
|
|
BASE_ELF_FILENAMES = ['u-boot', 'spl/u-boot-spl', 'tpl/u-boot-tpl']
|
2015-02-06 05:06:13 +00:00
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def mkdir(dirname, parents = False):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Make a directory if it doesn't already exist.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
dirname: Directory to create
|
|
|
|
"""
|
|
|
|
try:
|
2014-08-19 08:22:39 +00:00
|
|
|
if parents:
|
|
|
|
os.makedirs(dirname)
|
|
|
|
else:
|
|
|
|
os.mkdir(dirname)
|
2014-08-09 21:33:00 +00:00
|
|
|
except OSError as err:
|
|
|
|
if err.errno == errno.EEXIST:
|
2018-04-08 11:14:11 +00:00
|
|
|
if os.path.realpath('.') == os.path.realpath(dirname):
|
2023-07-19 23:49:09 +00:00
|
|
|
print(f"Cannot create the current working directory '{dirname}'!")
|
2018-04-08 11:14:11 +00:00
|
|
|
sys.exit(1)
|
2014-08-09 21:33:00 +00:00
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
2023-07-19 23:49:09 +00:00
|
|
|
# pylint: disable=R0903
|
2014-08-09 21:33:00 +00:00
|
|
|
class BuilderJob:
|
|
|
|
"""Holds information about a job to be performed by a thread
|
|
|
|
|
|
|
|
Members:
|
2022-07-12 01:03:57 +00:00
|
|
|
brd: Board object to build
|
2020-03-18 15:42:41 +00:00
|
|
|
commits: List of Commit objects to build
|
|
|
|
keep_outputs: True to save build output files
|
|
|
|
step: 1 to process every commit, n to process every nth commit
|
2020-03-18 15:42:42 +00:00
|
|
|
work_in_output: Use the output directory as the work directory and
|
|
|
|
don't write to a separate output directory.
|
2014-08-09 21:33:00 +00:00
|
|
|
"""
|
|
|
|
def __init__(self):
|
2022-07-12 01:03:57 +00:00
|
|
|
self.brd = None
|
2014-08-09 21:33:00 +00:00
|
|
|
self.commits = []
|
2020-03-18 15:42:41 +00:00
|
|
|
self.keep_outputs = False
|
|
|
|
self.step = 1
|
2020-03-18 15:42:42 +00:00
|
|
|
self.work_in_output = False
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ResultThread(threading.Thread):
|
|
|
|
"""This thread processes results from builder threads.
|
|
|
|
|
|
|
|
It simply passes the results on to the builder. There is only one
|
|
|
|
result thread, and this helps to serialise the build output.
|
|
|
|
"""
|
|
|
|
def __init__(self, builder):
|
|
|
|
"""Set up a new result thread
|
|
|
|
|
|
|
|
Args:
|
|
|
|
builder: Builder which will be sent each result
|
|
|
|
"""
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.builder = builder
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
"""Called to start up the result thread.
|
|
|
|
|
|
|
|
We collect the next result job and pass it on to the build.
|
|
|
|
"""
|
|
|
|
while True:
|
|
|
|
result = self.builder.out_queue.get()
|
2023-07-19 23:49:06 +00:00
|
|
|
self.builder.process_result(result)
|
2014-08-09 21:33:00 +00:00
|
|
|
self.builder.out_queue.task_done()
|
|
|
|
|
|
|
|
|
|
|
|
class BuilderThread(threading.Thread):
|
|
|
|
"""This thread builds U-Boot for a particular board.
|
|
|
|
|
|
|
|
An input queue provides each new job. We run 'make' to build U-Boot
|
|
|
|
and then pass the results on to the output queue.
|
|
|
|
|
|
|
|
Members:
|
|
|
|
builder: The builder which contains information we might need
|
|
|
|
thread_num: Our thread number (0-n-1), used to decide on a
|
2021-04-11 04:27:25 +00:00
|
|
|
temporary directory. If this is -1 then there are no threads
|
|
|
|
and we are the (only) main process
|
|
|
|
mrproper: Use 'make mrproper' before each reconfigure
|
|
|
|
per_board_out_dir: True to build in a separate persistent directory per
|
|
|
|
board rather than a thread-specific directory
|
|
|
|
test_exception: Used for testing; True to raise an exception instead of
|
|
|
|
reporting the build result
|
2014-08-09 21:33:00 +00:00
|
|
|
"""
|
2021-04-11 04:27:27 +00:00
|
|
|
def __init__(self, builder, thread_num, mrproper, per_board_out_dir,
|
|
|
|
test_exception=False):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Set up a new builder thread"""
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.builder = builder
|
|
|
|
self.thread_num = thread_num
|
2020-04-09 21:08:51 +00:00
|
|
|
self.mrproper = mrproper
|
2016-04-11 16:48:44 +00:00
|
|
|
self.per_board_out_dir = per_board_out_dir
|
2021-04-11 04:27:27 +00:00
|
|
|
self.test_exception = test_exception
|
2023-07-19 23:49:09 +00:00
|
|
|
self.toolchain = None
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def make(self, commit, brd, stage, cwd, *args, **kwargs):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Run 'make' on a particular commit and board.
|
|
|
|
|
|
|
|
The source code will already be checked out, so the 'commit'
|
|
|
|
argument is only for information.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
commit: Commit object that is being built
|
|
|
|
brd: Board object that is being built
|
|
|
|
stage: Stage of the build. Valid stages are:
|
2014-08-20 20:10:29 +00:00
|
|
|
mrproper - can be called to clean source
|
2014-08-09 21:33:00 +00:00
|
|
|
config - called to configure for a board
|
|
|
|
build - the main make invocation - it does the build
|
|
|
|
args: A list of arguments to pass to 'make'
|
2022-01-29 21:14:05 +00:00
|
|
|
kwargs: A list of keyword arguments to pass to command.run_pipe()
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
CommandResult object
|
|
|
|
"""
|
|
|
|
return self.builder.do_make(commit, brd, stage, cwd, *args,
|
|
|
|
**kwargs)
|
|
|
|
|
2023-07-19 23:49:15 +00:00
|
|
|
def _build_args(self, brd, out_dir, out_rel_dir, work_dir, commit_upto):
|
2023-07-19 23:49:13 +00:00
|
|
|
"""Set up arguments to the args list based on the settings
|
|
|
|
|
|
|
|
Args:
|
2023-07-19 23:49:14 +00:00
|
|
|
brd (Board): Board to create arguments for
|
2023-07-19 23:49:15 +00:00
|
|
|
out_dir (str): Path to output directory containing the files
|
|
|
|
out_rel_dir (str): Output directory relative to the current dir
|
|
|
|
work_dir (str): Directory to which the source will be checked out
|
|
|
|
commit_upto (int): Commit number to build (0...n-1)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple:
|
|
|
|
list of str: Arguments to pass to make
|
|
|
|
str: Current working directory, or None if no commit
|
|
|
|
str: Source directory (typically the work directory)
|
2023-07-19 23:49:13 +00:00
|
|
|
"""
|
2023-07-19 23:49:15 +00:00
|
|
|
args = []
|
|
|
|
cwd = work_dir
|
|
|
|
src_dir = os.path.realpath(work_dir)
|
|
|
|
if not self.builder.in_tree:
|
|
|
|
if commit_upto is None:
|
|
|
|
# In this case we are building in the original source directory
|
|
|
|
# (i.e. the current directory where buildman is invoked. The
|
|
|
|
# output directory is set to this thread's selected work
|
|
|
|
# directory.
|
|
|
|
#
|
|
|
|
# Symlinks can confuse U-Boot's Makefile since we may use '..'
|
|
|
|
# in our path, so remove them.
|
|
|
|
real_dir = os.path.realpath(out_dir)
|
|
|
|
args.append(f'O={real_dir}')
|
|
|
|
cwd = None
|
|
|
|
src_dir = os.getcwd()
|
|
|
|
else:
|
|
|
|
args.append(f'O={out_rel_dir}')
|
2023-07-19 23:49:13 +00:00
|
|
|
if self.builder.verbose_build:
|
|
|
|
args.append('V=1')
|
|
|
|
else:
|
|
|
|
args.append('-s')
|
|
|
|
if self.builder.num_jobs is not None:
|
|
|
|
args.extend(['-j', str(self.builder.num_jobs)])
|
|
|
|
if self.builder.warnings_as_errors:
|
|
|
|
args.append('KCFLAGS=-Werror')
|
|
|
|
args.append('HOSTCFLAGS=-Werror')
|
|
|
|
if self.builder.allow_missing:
|
|
|
|
args.append('BINMAN_ALLOW_MISSING=1')
|
|
|
|
if self.builder.no_lto:
|
|
|
|
args.append('NO_LTO=1')
|
|
|
|
if self.builder.reproducible_builds:
|
|
|
|
args.append('SOURCE_DATE_EPOCH=0')
|
2023-07-19 23:49:14 +00:00
|
|
|
args.extend(self.builder.toolchains.GetMakeArguments(brd))
|
|
|
|
args.extend(self.toolchain.MakeArgs())
|
2023-07-19 23:49:15 +00:00
|
|
|
return args, cwd, src_dir
|
2023-07-19 23:49:13 +00:00
|
|
|
|
2023-07-19 23:49:17 +00:00
|
|
|
def _reconfigure(self, commit, brd, cwd, args, env, config_args, config_out,
|
|
|
|
cmd_list):
|
|
|
|
"""Reconfigure the build
|
|
|
|
|
|
|
|
Args:
|
|
|
|
commit (Commit): Commit only being built
|
|
|
|
brd (Board): Board being built
|
|
|
|
cwd (str): Current working directory
|
|
|
|
args (list of str): Arguments to pass to make
|
|
|
|
env (dict): Environment strings
|
|
|
|
config_args (list of str): defconfig arg for this board
|
|
|
|
cmd_list (list of str): List to add the commands to, for logging
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
CommandResult object
|
|
|
|
"""
|
|
|
|
if self.mrproper:
|
|
|
|
result = self.make(commit, brd, 'mrproper', cwd, 'mrproper', *args,
|
|
|
|
env=env)
|
|
|
|
config_out.write(result.combined)
|
|
|
|
cmd_list.append([self.builder.gnu_make, 'mrproper', *args])
|
|
|
|
result = self.make(commit, brd, 'config', cwd, *(args + config_args),
|
|
|
|
env=env)
|
|
|
|
cmd_list.append([self.builder.gnu_make] + args + config_args)
|
|
|
|
config_out.write(result.combined)
|
|
|
|
return result
|
|
|
|
|
2023-07-19 23:49:18 +00:00
|
|
|
def _build(self, commit, brd, cwd, args, env, cmd_list, config_only):
|
|
|
|
"""Perform the build
|
|
|
|
|
|
|
|
Args:
|
|
|
|
commit (Commit): Commit only being built
|
|
|
|
brd (Board): Board being built
|
|
|
|
cwd (str): Current working directory
|
|
|
|
args (list of str): Arguments to pass to make
|
|
|
|
env (dict): Environment strings
|
|
|
|
cmd_list (list of str): List to add the commands to, for logging
|
|
|
|
config_only (bool): True if this is a config-only build (using the
|
|
|
|
'make cfg' target)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
CommandResult object
|
|
|
|
"""
|
|
|
|
if config_only:
|
|
|
|
args.append('cfg')
|
|
|
|
result = self.make(commit, brd, 'build', cwd, *args, env=env)
|
|
|
|
cmd_list.append([self.builder.gnu_make] + args)
|
|
|
|
if (result.return_code == 2 and
|
|
|
|
('Some images are invalid' in result.stderr)):
|
|
|
|
# This is handled later by the check for output in stderr
|
|
|
|
result.return_code = 0
|
|
|
|
return result
|
|
|
|
|
2023-07-19 23:49:19 +00:00
|
|
|
def _read_done_file(self, commit_upto, brd, result, force_build,
|
|
|
|
force_build_failures):
|
|
|
|
"""Check the 'done' file and see if this commit should be built
|
|
|
|
|
|
|
|
Args:
|
|
|
|
commit (Commit): Commit only being built
|
|
|
|
brd (Board): Board being built
|
|
|
|
result (CommandResult): result object to update
|
|
|
|
force_build (bool): Force a build even if one was previously done
|
|
|
|
force_build_failures (bool): Force a bulid if the previous result
|
|
|
|
showed failure
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: True if build should be built
|
|
|
|
"""
|
|
|
|
done_file = self.builder.get_done_file(commit_upto, brd.target)
|
|
|
|
result.already_done = os.path.exists(done_file)
|
|
|
|
will_build = (force_build or force_build_failures or
|
|
|
|
not result.already_done)
|
|
|
|
if result.already_done:
|
|
|
|
with open(done_file, 'r', encoding='utf-8') as outf:
|
|
|
|
try:
|
|
|
|
result.return_code = int(outf.readline())
|
|
|
|
except ValueError:
|
|
|
|
# The file may be empty due to running out of disk space.
|
|
|
|
# Try a rebuild
|
|
|
|
result.return_code = RETURN_CODE_RETRY
|
|
|
|
|
|
|
|
# Check the signal that the build needs to be retried
|
|
|
|
if result.return_code == RETURN_CODE_RETRY:
|
|
|
|
will_build = True
|
|
|
|
elif will_build:
|
|
|
|
err_file = self.builder.get_err_file(commit_upto, brd.target)
|
|
|
|
if os.path.exists(err_file) and os.stat(err_file).st_size:
|
|
|
|
result.stderr = 'bad'
|
|
|
|
elif not force_build:
|
|
|
|
# The build passed, so no need to build it again
|
|
|
|
will_build = False
|
|
|
|
return will_build
|
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def run_commit(self, commit_upto, brd, work_dir, do_config, config_only,
|
2022-01-22 12:07:33 +00:00
|
|
|
force_build, force_build_failures, work_in_output,
|
|
|
|
adjust_cfg):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Build a particular commit.
|
|
|
|
|
|
|
|
If the build is already done, and we are not forcing a build, we skip
|
|
|
|
the build and just return the previously-saved results.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
commit_upto: Commit number to build (0...n-1)
|
|
|
|
brd: Board object to build
|
|
|
|
work_dir: Directory to which the source will be checked out
|
|
|
|
do_config: True to run a make <board>_defconfig on the source
|
2016-11-16 21:09:25 +00:00
|
|
|
config_only: Only configure the source, do not build it
|
2014-08-09 21:33:00 +00:00
|
|
|
force_build: Force a build even if one was previously done
|
|
|
|
force_build_failures: Force a bulid if the previous result showed
|
|
|
|
failure
|
2020-03-18 15:42:42 +00:00
|
|
|
work_in_output: Use the output directory as the work directory and
|
|
|
|
don't write to a separate output directory.
|
2022-01-22 12:07:33 +00:00
|
|
|
adjust_cfg (list of str): List of changes to make to .config file
|
|
|
|
before building. Each is one of (where C is either CONFIG_xxx
|
|
|
|
or just xxx):
|
|
|
|
C to enable C
|
|
|
|
~C to disable C
|
|
|
|
C=val to set the value of C (val must have quotes if C is
|
|
|
|
a string Kconfig
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple containing:
|
|
|
|
- CommandResult object containing the results of the build
|
|
|
|
- boolean indicating whether 'make config' is still needed
|
|
|
|
"""
|
|
|
|
# Create a default result - it will be overwritte by the call to
|
2023-07-19 23:49:08 +00:00
|
|
|
# self.make() below, in the event that we do a build.
|
2014-08-09 21:33:00 +00:00
|
|
|
result = command.CommandResult()
|
|
|
|
result.return_code = 0
|
2020-03-18 15:42:42 +00:00
|
|
|
if work_in_output or self.builder.in_tree:
|
2023-07-19 23:49:15 +00:00
|
|
|
out_rel_dir = None
|
2014-08-09 21:33:00 +00:00
|
|
|
out_dir = work_dir
|
|
|
|
else:
|
2016-04-11 16:48:44 +00:00
|
|
|
if self.per_board_out_dir:
|
|
|
|
out_rel_dir = os.path.join('..', brd.target)
|
|
|
|
else:
|
|
|
|
out_rel_dir = 'build'
|
|
|
|
out_dir = os.path.join(work_dir, out_rel_dir)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
# Check if the job was already completed last time
|
2023-07-19 23:49:19 +00:00
|
|
|
will_build = self._read_done_file(commit_upto, brd, result, force_build,
|
|
|
|
force_build_failures)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
if will_build:
|
|
|
|
# We are going to have to build it. First, get a toolchain
|
|
|
|
if not self.toolchain:
|
|
|
|
try:
|
|
|
|
self.toolchain = self.builder.toolchains.Select(brd.arch)
|
|
|
|
except ValueError as err:
|
|
|
|
result.return_code = 10
|
|
|
|
result.stdout = ''
|
|
|
|
result.stderr = str(err)
|
|
|
|
# TODO(sjg@chromium.org): This gets swallowed, but needs
|
|
|
|
# to be reported.
|
|
|
|
|
|
|
|
if self.toolchain:
|
|
|
|
# Checkout the right commit
|
|
|
|
if self.builder.commits:
|
|
|
|
commit = self.builder.commits[commit_upto]
|
|
|
|
if self.builder.checkout:
|
|
|
|
git_dir = os.path.join(work_dir, '.git')
|
2022-01-29 21:14:11 +00:00
|
|
|
gitutil.checkout(commit.hash, git_dir, work_dir,
|
2014-08-09 21:33:00 +00:00
|
|
|
force=True)
|
|
|
|
else:
|
|
|
|
commit = 'current'
|
|
|
|
|
|
|
|
# Set up the environment and command line
|
2014-12-02 00:34:00 +00:00
|
|
|
env = self.toolchain.MakeEnvironment(self.builder.full_path)
|
2023-07-19 23:49:08 +00:00
|
|
|
mkdir(out_dir)
|
2023-07-19 23:49:15 +00:00
|
|
|
|
|
|
|
args, cwd, src_dir = self._build_args(brd, out_dir, out_rel_dir,
|
|
|
|
work_dir, commit_upto)
|
2023-07-19 23:49:09 +00:00
|
|
|
config_args = [f'{brd.target}_defconfig']
|
2023-07-19 23:49:16 +00:00
|
|
|
config_out = io.StringIO()
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2020-12-17 00:24:17 +00:00
|
|
|
# Remove any output targets. Since we use a build directory that
|
|
|
|
# was previously used by another board, it may have produced an
|
|
|
|
# SPL image. If we don't remove it (i.e. see do_config and
|
|
|
|
# self.mrproper below) then it will appear to be the output of
|
|
|
|
# this build, even if it does not produce SPL images.
|
|
|
|
for elf in BASE_ELF_FILENAMES:
|
|
|
|
fname = os.path.join(out_dir, elf)
|
|
|
|
if os.path.exists(fname):
|
|
|
|
os.remove(fname)
|
|
|
|
|
2014-08-09 21:33:00 +00:00
|
|
|
# If we need to reconfigure, do that now
|
2022-01-22 12:07:33 +00:00
|
|
|
cfg_file = os.path.join(out_dir, '.config')
|
2023-02-21 19:40:27 +00:00
|
|
|
cmd_list = []
|
2022-01-22 12:07:33 +00:00
|
|
|
if do_config or adjust_cfg:
|
2023-07-19 23:49:17 +00:00
|
|
|
result = self._reconfigure(
|
|
|
|
commit, brd, cwd, args, env, config_args, config_out,
|
|
|
|
cmd_list)
|
2014-08-09 21:33:00 +00:00
|
|
|
do_config = False # No need to configure next time
|
2022-01-22 12:07:33 +00:00
|
|
|
if adjust_cfg:
|
|
|
|
cfgutil.adjust_cfg_file(cfg_file, adjust_cfg)
|
2023-07-19 23:49:18 +00:00
|
|
|
|
|
|
|
# Now do the build, if everything looks OK
|
2014-08-09 21:33:00 +00:00
|
|
|
if result.return_code == 0:
|
2023-07-19 23:49:18 +00:00
|
|
|
result = self._build(commit, brd, cwd, args, env, cmd_list,
|
|
|
|
config_only)
|
2022-01-22 12:07:33 +00:00
|
|
|
if adjust_cfg:
|
|
|
|
errs = cfgutil.check_cfg_file(cfg_file, adjust_cfg)
|
|
|
|
if errs:
|
|
|
|
result.stderr += errs
|
|
|
|
result.return_code = 1
|
2014-08-28 15:43:42 +00:00
|
|
|
result.stderr = result.stderr.replace(src_dir + '/', '')
|
2015-02-06 05:06:12 +00:00
|
|
|
if self.builder.verbose_build:
|
2023-07-19 23:49:16 +00:00
|
|
|
result.stdout = config_out.getvalue() + result.stdout
|
2023-02-21 19:40:27 +00:00
|
|
|
result.cmd_list = cmd_list
|
2014-08-09 21:33:00 +00:00
|
|
|
else:
|
|
|
|
result.return_code = 1
|
2023-07-19 23:49:09 +00:00
|
|
|
result.stderr = f'No tool chain for {brd.arch}\n'
|
2014-08-09 21:33:00 +00:00
|
|
|
result.already_done = False
|
|
|
|
|
|
|
|
result.toolchain = self.toolchain
|
|
|
|
result.brd = brd
|
|
|
|
result.commit_upto = commit_upto
|
|
|
|
result.out_dir = out_dir
|
|
|
|
return result, do_config
|
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def _write_result(self, result, keep_outputs, work_in_output):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Write a built result to the output directory.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
result: CommandResult object containing result to write
|
|
|
|
keep_outputs: True to store the output binaries, False
|
|
|
|
to delete them
|
2020-03-18 15:42:42 +00:00
|
|
|
work_in_output: Use the output directory as the work directory and
|
|
|
|
don't write to a separate output directory.
|
2014-08-09 21:33:00 +00:00
|
|
|
"""
|
2015-02-06 05:06:13 +00:00
|
|
|
# If we think this might have been aborted with Ctrl-C, record the
|
|
|
|
# failure but not that we are 'done' with this board. A retry may fix
|
|
|
|
# it.
|
2021-10-20 03:43:23 +00:00
|
|
|
maybe_aborted = result.stderr and 'No child processes' in result.stderr
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2021-10-20 03:43:23 +00:00
|
|
|
if result.return_code >= 0 and result.already_done:
|
2014-08-09 21:33:00 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# Write the output and stderr
|
2023-07-19 23:49:10 +00:00
|
|
|
output_dir = self.builder.get_output_dir(result.commit_upto)
|
2023-07-19 23:49:08 +00:00
|
|
|
mkdir(output_dir)
|
2023-07-19 23:49:06 +00:00
|
|
|
build_dir = self.builder.get_build_dir(result.commit_upto,
|
2014-08-09 21:33:00 +00:00
|
|
|
result.brd.target)
|
2023-07-19 23:49:08 +00:00
|
|
|
mkdir(build_dir)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
outfile = os.path.join(build_dir, 'log')
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(outfile, 'w', encoding='utf-8') as outf:
|
2014-08-09 21:33:00 +00:00
|
|
|
if result.stdout:
|
2023-07-19 23:49:09 +00:00
|
|
|
outf.write(result.stdout)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2023-07-19 23:49:06 +00:00
|
|
|
errfile = self.builder.get_err_file(result.commit_upto,
|
2014-08-09 21:33:00 +00:00
|
|
|
result.brd.target)
|
|
|
|
if result.stderr:
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(errfile, 'w', encoding='utf-8') as outf:
|
|
|
|
outf.write(result.stderr)
|
2014-08-09 21:33:00 +00:00
|
|
|
elif os.path.exists(errfile):
|
|
|
|
os.remove(errfile)
|
|
|
|
|
2021-10-20 03:43:23 +00:00
|
|
|
# Fatal error
|
|
|
|
if result.return_code < 0:
|
|
|
|
return
|
|
|
|
|
2014-08-09 21:33:00 +00:00
|
|
|
if result.toolchain:
|
|
|
|
# Write the build result and toolchain information.
|
2023-07-19 23:49:06 +00:00
|
|
|
done_file = self.builder.get_done_file(result.commit_upto,
|
2014-08-09 21:33:00 +00:00
|
|
|
result.brd.target)
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(done_file, 'w', encoding='utf-8') as outf:
|
2015-02-06 05:06:13 +00:00
|
|
|
if maybe_aborted:
|
|
|
|
# Special code to indicate we need to retry
|
2023-07-19 23:49:09 +00:00
|
|
|
outf.write(f'{RETURN_CODE_RETRY}')
|
2015-02-06 05:06:13 +00:00
|
|
|
else:
|
2023-07-19 23:49:09 +00:00
|
|
|
outf.write(f'{result.return_code}')
|
|
|
|
with open(os.path.join(build_dir, 'toolchain'), 'w',
|
|
|
|
encoding='utf-8') as outf:
|
|
|
|
print('gcc', result.toolchain.gcc, file=outf)
|
|
|
|
print('path', result.toolchain.path, file=outf)
|
|
|
|
print('cross', result.toolchain.cross, file=outf)
|
|
|
|
print('arch', result.toolchain.arch, file=outf)
|
|
|
|
outf.write(f'{result.return_code}')
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
# Write out the image and function size information and an objdump
|
2014-12-02 00:34:00 +00:00
|
|
|
env = result.toolchain.MakeEnvironment(self.builder.full_path)
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(os.path.join(build_dir, 'out-env'), 'wb') as outf:
|
2019-01-07 23:44:23 +00:00
|
|
|
for var in sorted(env.keys()):
|
2023-07-19 23:49:09 +00:00
|
|
|
outf.write(b'%s="%s"' % (var, env[var]))
|
2023-02-21 19:40:27 +00:00
|
|
|
|
|
|
|
with open(os.path.join(build_dir, 'out-cmd'), 'w',
|
2023-07-19 23:49:09 +00:00
|
|
|
encoding='utf-8') as outf:
|
2023-02-21 19:40:27 +00:00
|
|
|
for cmd in result.cmd_list:
|
2023-07-19 23:49:09 +00:00
|
|
|
print(' '.join(cmd), file=outf)
|
2023-02-21 19:40:27 +00:00
|
|
|
|
2014-08-09 21:33:00 +00:00
|
|
|
lines = []
|
2020-12-17 00:24:17 +00:00
|
|
|
for fname in BASE_ELF_FILENAMES:
|
2023-07-19 23:49:09 +00:00
|
|
|
cmd = [f'{self.toolchain.cross}nm', '--size-sort', fname]
|
2022-01-29 21:14:05 +00:00
|
|
|
nm_result = command.run_pipe([cmd], capture=True,
|
2014-08-09 21:33:00 +00:00
|
|
|
capture_stderr=True, cwd=result.out_dir,
|
|
|
|
raise_on_error=False, env=env)
|
|
|
|
if nm_result.stdout:
|
2023-07-19 23:49:09 +00:00
|
|
|
nm_fname = self.builder.get_func_sizes_file(
|
|
|
|
result.commit_upto, result.brd.target, fname)
|
|
|
|
with open(nm_fname, 'w', encoding='utf-8') as outf:
|
|
|
|
print(nm_result.stdout, end=' ', file=outf)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2023-07-19 23:49:09 +00:00
|
|
|
cmd = [f'{self.toolchain.cross}objdump', '-h', fname]
|
2022-01-29 21:14:05 +00:00
|
|
|
dump_result = command.run_pipe([cmd], capture=True,
|
2014-08-09 21:33:00 +00:00
|
|
|
capture_stderr=True, cwd=result.out_dir,
|
|
|
|
raise_on_error=False, env=env)
|
|
|
|
rodata_size = ''
|
|
|
|
if dump_result.stdout:
|
2023-07-19 23:49:06 +00:00
|
|
|
objdump = self.builder.get_objdump_file(result.commit_upto,
|
2014-08-09 21:33:00 +00:00
|
|
|
result.brd.target, fname)
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(objdump, 'w', encoding='utf-8') as outf:
|
|
|
|
print(dump_result.stdout, end=' ', file=outf)
|
2014-08-09 21:33:00 +00:00
|
|
|
for line in dump_result.stdout.splitlines():
|
|
|
|
fields = line.split()
|
|
|
|
if len(fields) > 5 and fields[1] == '.rodata':
|
|
|
|
rodata_size = fields[2]
|
|
|
|
|
2023-07-19 23:49:09 +00:00
|
|
|
cmd = [f'{self.toolchain.cross}size', fname]
|
2022-01-29 21:14:05 +00:00
|
|
|
size_result = command.run_pipe([cmd], capture=True,
|
2014-08-09 21:33:00 +00:00
|
|
|
capture_stderr=True, cwd=result.out_dir,
|
|
|
|
raise_on_error=False, env=env)
|
|
|
|
if size_result.stdout:
|
|
|
|
lines.append(size_result.stdout.splitlines()[1] + ' ' +
|
|
|
|
rodata_size)
|
|
|
|
|
2018-05-31 04:48:33 +00:00
|
|
|
# Extract the environment from U-Boot and dump it out
|
2023-07-19 23:49:09 +00:00
|
|
|
cmd = [f'{self.toolchain.cross}objcopy', '-O', 'binary',
|
2018-05-31 04:48:33 +00:00
|
|
|
'-j', '.rodata.default_environment',
|
|
|
|
'env/built-in.o', 'uboot.env']
|
2022-01-29 21:14:05 +00:00
|
|
|
command.run_pipe([cmd], capture=True,
|
2018-05-31 04:48:33 +00:00
|
|
|
capture_stderr=True, cwd=result.out_dir,
|
|
|
|
raise_on_error=False, env=env)
|
2020-04-17 23:51:34 +00:00
|
|
|
if not work_in_output:
|
2023-07-19 23:49:08 +00:00
|
|
|
self.copy_files(result.out_dir, build_dir, '', ['uboot.env'])
|
2018-05-31 04:48:33 +00:00
|
|
|
|
2014-08-09 21:33:00 +00:00
|
|
|
# Write out the image sizes file. This is similar to the output
|
|
|
|
# of binutil's 'size' utility, but it omits the header line and
|
|
|
|
# adds an additional hex value at the end of each line for the
|
|
|
|
# rodata size
|
2023-07-19 23:49:09 +00:00
|
|
|
if lines:
|
2023-07-19 23:49:06 +00:00
|
|
|
sizes = self.builder.get_sizes_file(result.commit_upto,
|
2014-08-09 21:33:00 +00:00
|
|
|
result.brd.target)
|
2023-07-19 23:49:09 +00:00
|
|
|
with open(sizes, 'w', encoding='utf-8') as outf:
|
|
|
|
print('\n'.join(lines), file=outf)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2020-04-17 23:51:34 +00:00
|
|
|
if not work_in_output:
|
|
|
|
# Write out the configuration files, with a special case for SPL
|
|
|
|
for dirname in ['', 'spl', 'tpl']:
|
2023-07-19 23:49:08 +00:00
|
|
|
self.copy_files(
|
2020-04-17 23:51:34 +00:00
|
|
|
result.out_dir, build_dir, dirname,
|
|
|
|
['u-boot.cfg', 'spl/u-boot-spl.cfg', 'tpl/u-boot-tpl.cfg',
|
|
|
|
'.config', 'include/autoconf.mk',
|
|
|
|
'include/generated/autoconf.h'])
|
|
|
|
|
|
|
|
# Now write the actual build output
|
|
|
|
if keep_outputs:
|
2023-07-19 23:49:08 +00:00
|
|
|
self.copy_files(
|
2020-04-17 23:51:34 +00:00
|
|
|
result.out_dir, build_dir, '',
|
|
|
|
['u-boot*', '*.bin', '*.map', '*.img', 'MLO', 'SPL',
|
|
|
|
'include/autoconf.mk', 'spl/u-boot-spl*'])
|
2015-02-06 05:06:14 +00:00
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def copy_files(self, out_dir, build_dir, dirname, patterns):
|
2015-02-06 05:06:14 +00:00
|
|
|
"""Copy files from the build directory to the output.
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2015-02-06 05:06:14 +00:00
|
|
|
Args:
|
|
|
|
out_dir: Path to output directory containing the files
|
|
|
|
build_dir: Place to copy the files
|
|
|
|
dirname: Source directory, '' for normal U-Boot, 'spl' for SPL
|
|
|
|
patterns: A list of filenames (strings) to copy, each relative
|
|
|
|
to the build directory
|
|
|
|
"""
|
|
|
|
for pattern in patterns:
|
|
|
|
file_list = glob.glob(os.path.join(out_dir, dirname, pattern))
|
|
|
|
for fname in file_list:
|
|
|
|
target = os.path.basename(fname)
|
|
|
|
if dirname:
|
|
|
|
base, ext = os.path.splitext(target)
|
|
|
|
if ext:
|
2023-07-19 23:49:09 +00:00
|
|
|
target = f'{base}-{dirname}{ext}'
|
2015-02-06 05:06:14 +00:00
|
|
|
shutil.copy(fname, os.path.join(build_dir, target))
|
2014-08-09 21:33:00 +00:00
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def _send_result(self, result):
|
2021-04-11 04:27:26 +00:00
|
|
|
"""Send a result to the builder for processing
|
|
|
|
|
|
|
|
Args:
|
|
|
|
result: CommandResult object containing the results of the build
|
2021-04-11 04:27:27 +00:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError if self.test_exception is true (for testing)
|
2021-04-11 04:27:26 +00:00
|
|
|
"""
|
2021-04-11 04:27:27 +00:00
|
|
|
if self.test_exception:
|
|
|
|
raise ValueError('test exception')
|
2021-04-11 04:27:26 +00:00
|
|
|
if self.thread_num != -1:
|
|
|
|
self.builder.out_queue.put(result)
|
|
|
|
else:
|
2023-07-19 23:49:06 +00:00
|
|
|
self.builder.process_result(result)
|
2021-04-11 04:27:26 +00:00
|
|
|
|
2023-07-19 23:49:08 +00:00
|
|
|
def run_job(self, job):
|
2014-08-09 21:33:00 +00:00
|
|
|
"""Run a single job
|
|
|
|
|
|
|
|
A job consists of a building a list of commits for a particular board.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
job: Job to build
|
2021-01-31 05:17:46 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of Result objects
|
2014-08-09 21:33:00 +00:00
|
|
|
"""
|
2022-07-12 01:03:57 +00:00
|
|
|
brd = job.brd
|
2023-07-19 23:49:06 +00:00
|
|
|
work_dir = self.builder.get_thread_dir(self.thread_num)
|
2014-08-09 21:33:00 +00:00
|
|
|
self.toolchain = None
|
|
|
|
if job.commits:
|
|
|
|
# Run 'make board_defconfig' on the first commit
|
|
|
|
do_config = True
|
|
|
|
commit_upto = 0
|
|
|
|
force_build = False
|
|
|
|
for commit_upto in range(0, len(job.commits), job.step):
|
2023-07-19 23:49:08 +00:00
|
|
|
result, request_config = self.run_commit(commit_upto, brd,
|
2016-11-16 21:09:25 +00:00
|
|
|
work_dir, do_config, self.builder.config_only,
|
2014-08-09 21:33:00 +00:00
|
|
|
force_build or self.builder.force_build,
|
2020-03-18 15:42:42 +00:00
|
|
|
self.builder.force_build_failures,
|
2022-01-22 12:07:33 +00:00
|
|
|
job.work_in_output, job.adjust_cfg)
|
2014-08-09 21:33:00 +00:00
|
|
|
failed = result.return_code or result.stderr
|
|
|
|
did_config = do_config
|
|
|
|
if failed and not do_config:
|
|
|
|
# If our incremental build failed, try building again
|
|
|
|
# with a reconfig.
|
|
|
|
if self.builder.force_config_on_failure:
|
2023-07-19 23:49:08 +00:00
|
|
|
result, request_config = self.run_commit(commit_upto,
|
2020-03-18 15:42:42 +00:00
|
|
|
brd, work_dir, True, False, True, False,
|
2022-01-22 12:07:33 +00:00
|
|
|
job.work_in_output, job.adjust_cfg)
|
2014-08-09 21:33:00 +00:00
|
|
|
did_config = True
|
|
|
|
if not self.builder.force_reconfig:
|
|
|
|
do_config = request_config
|
|
|
|
|
|
|
|
# If we built that commit, then config is done. But if we got
|
|
|
|
# an warning, reconfig next time to force it to build the same
|
|
|
|
# files that created warnings this time. Otherwise an
|
|
|
|
# incremental build may not build the same file, and we will
|
|
|
|
# think that the warning has gone away.
|
|
|
|
# We could avoid this by using -Werror everywhere...
|
|
|
|
# For errors, the problem doesn't happen, since presumably
|
|
|
|
# the build stopped and didn't generate output, so will retry
|
|
|
|
# that file next time. So we could detect warnings and deal
|
|
|
|
# with them specially here. For now, we just reconfigure if
|
|
|
|
# anything goes work.
|
|
|
|
# Of course this is substantially slower if there are build
|
|
|
|
# errors/warnings (e.g. 2-3x slower even if only 10% of builds
|
|
|
|
# have problems).
|
|
|
|
if (failed and not result.already_done and not did_config and
|
|
|
|
self.builder.force_config_on_failure):
|
|
|
|
# If this build failed, try the next one with a
|
|
|
|
# reconfigure.
|
|
|
|
# Sometimes if the board_config.h file changes it can mess
|
|
|
|
# with dependencies, and we get:
|
|
|
|
# make: *** No rule to make target `include/autoconf.mk',
|
|
|
|
# needed by `depend'.
|
|
|
|
do_config = True
|
|
|
|
force_build = True
|
|
|
|
else:
|
|
|
|
force_build = False
|
|
|
|
if self.builder.force_config_on_failure:
|
|
|
|
if failed:
|
|
|
|
do_config = True
|
|
|
|
result.commit_upto = commit_upto
|
|
|
|
if result.return_code < 0:
|
|
|
|
raise ValueError('Interrupt')
|
|
|
|
|
|
|
|
# We have the build results, so output the result
|
2023-07-19 23:49:08 +00:00
|
|
|
self._write_result(result, job.keep_outputs, job.work_in_output)
|
|
|
|
self._send_result(result)
|
2014-08-09 21:33:00 +00:00
|
|
|
else:
|
|
|
|
# Just build the currently checked-out build
|
2023-07-19 23:49:08 +00:00
|
|
|
result, request_config = self.run_commit(None, brd, work_dir, True,
|
2016-11-16 21:09:25 +00:00
|
|
|
self.builder.config_only, True,
|
2022-01-22 12:07:33 +00:00
|
|
|
self.builder.force_build_failures, job.work_in_output,
|
|
|
|
job.adjust_cfg)
|
2014-08-09 21:33:00 +00:00
|
|
|
result.commit_upto = 0
|
2023-07-19 23:49:08 +00:00
|
|
|
self._write_result(result, job.keep_outputs, job.work_in_output)
|
|
|
|
self._send_result(result)
|
2014-08-09 21:33:00 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
"""Our thread's run function
|
|
|
|
|
|
|
|
This thread picks a job from the queue, runs it, and then goes to the
|
|
|
|
next job.
|
|
|
|
"""
|
|
|
|
while True:
|
|
|
|
job = self.builder.queue.get()
|
2021-04-11 04:27:27 +00:00
|
|
|
try:
|
2023-07-19 23:49:08 +00:00
|
|
|
self.run_job(job)
|
2023-07-19 23:49:09 +00:00
|
|
|
except Exception as exc:
|
|
|
|
print('Thread exception (use -T0 to run without threads):',
|
|
|
|
exc)
|
|
|
|
self.builder.thread_exceptions.append(exc)
|
2014-08-09 21:33:00 +00:00
|
|
|
self.builder.queue.task_done()
|