Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 2 | # Copyright (c) 2014 Google, Inc |
| 3 | # |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 4 | |
| 5 | import errno |
| 6 | import glob |
| 7 | import os |
| 8 | import shutil |
Lothar Waßmann | ce6df92 | 2018-04-08 05:14:11 -0600 | [diff] [blame] | 9 | import sys |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 10 | import threading |
| 11 | |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 12 | from buildman import cfgutil |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 13 | from patman import gitutil |
Simon Glass | 131444f | 2023-02-23 18:18:04 -0700 | [diff] [blame] | 14 | from u_boot_pylib import command |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 15 | |
Simon Glass | fd3eea1 | 2015-02-05 22:06:13 -0700 | [diff] [blame] | 16 | RETURN_CODE_RETRY = -1 |
Simon Glass | e0f1971 | 2020-12-16 17:24:17 -0700 | [diff] [blame] | 17 | BASE_ELF_FILENAMES = ['u-boot', 'spl/u-boot-spl', 'tpl/u-boot-tpl'] |
Simon Glass | fd3eea1 | 2015-02-05 22:06:13 -0700 | [diff] [blame] | 18 | |
Thierry Reding | 336d5bd | 2014-08-19 10:22:39 +0200 | [diff] [blame] | 19 | def Mkdir(dirname, parents = False): |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 20 | """Make a directory if it doesn't already exist. |
| 21 | |
| 22 | Args: |
| 23 | dirname: Directory to create |
| 24 | """ |
| 25 | try: |
Thierry Reding | 336d5bd | 2014-08-19 10:22:39 +0200 | [diff] [blame] | 26 | if parents: |
| 27 | os.makedirs(dirname) |
| 28 | else: |
| 29 | os.mkdir(dirname) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 30 | except OSError as err: |
| 31 | if err.errno == errno.EEXIST: |
Lothar Waßmann | ce6df92 | 2018-04-08 05:14:11 -0600 | [diff] [blame] | 32 | if os.path.realpath('.') == os.path.realpath(dirname): |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 33 | print("Cannot create the current working directory '%s'!" % dirname) |
Lothar Waßmann | ce6df92 | 2018-04-08 05:14:11 -0600 | [diff] [blame] | 34 | sys.exit(1) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 35 | pass |
| 36 | else: |
| 37 | raise |
| 38 | |
| 39 | class BuilderJob: |
| 40 | """Holds information about a job to be performed by a thread |
| 41 | |
| 42 | Members: |
Simon Glass | 8132f98 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 43 | brd: Board object to build |
Simon Glass | df89015 | 2020-03-18 09:42:41 -0600 | [diff] [blame] | 44 | commits: List of Commit objects to build |
| 45 | keep_outputs: True to save build output files |
| 46 | step: 1 to process every commit, n to process every nth commit |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 47 | work_in_output: Use the output directory as the work directory and |
| 48 | don't write to a separate output directory. |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 49 | """ |
| 50 | def __init__(self): |
Simon Glass | 8132f98 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 51 | self.brd = None |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 52 | self.commits = [] |
Simon Glass | df89015 | 2020-03-18 09:42:41 -0600 | [diff] [blame] | 53 | self.keep_outputs = False |
| 54 | self.step = 1 |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 55 | self.work_in_output = False |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 56 | |
| 57 | |
| 58 | class ResultThread(threading.Thread): |
| 59 | """This thread processes results from builder threads. |
| 60 | |
| 61 | It simply passes the results on to the builder. There is only one |
| 62 | result thread, and this helps to serialise the build output. |
| 63 | """ |
| 64 | def __init__(self, builder): |
| 65 | """Set up a new result thread |
| 66 | |
| 67 | Args: |
| 68 | builder: Builder which will be sent each result |
| 69 | """ |
| 70 | threading.Thread.__init__(self) |
| 71 | self.builder = builder |
| 72 | |
| 73 | def run(self): |
| 74 | """Called to start up the result thread. |
| 75 | |
| 76 | We collect the next result job and pass it on to the build. |
| 77 | """ |
| 78 | while True: |
| 79 | result = self.builder.out_queue.get() |
| 80 | self.builder.ProcessResult(result) |
| 81 | self.builder.out_queue.task_done() |
| 82 | |
| 83 | |
| 84 | class BuilderThread(threading.Thread): |
| 85 | """This thread builds U-Boot for a particular board. |
| 86 | |
| 87 | An input queue provides each new job. We run 'make' to build U-Boot |
| 88 | and then pass the results on to the output queue. |
| 89 | |
| 90 | Members: |
| 91 | builder: The builder which contains information we might need |
| 92 | thread_num: Our thread number (0-n-1), used to decide on a |
Simon Glass | a29b3ea | 2021-04-11 16:27:25 +1200 | [diff] [blame] | 93 | temporary directory. If this is -1 then there are no threads |
| 94 | and we are the (only) main process |
| 95 | mrproper: Use 'make mrproper' before each reconfigure |
| 96 | per_board_out_dir: True to build in a separate persistent directory per |
| 97 | board rather than a thread-specific directory |
| 98 | test_exception: Used for testing; True to raise an exception instead of |
| 99 | reporting the build result |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 100 | """ |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 101 | def __init__(self, builder, thread_num, mrproper, per_board_out_dir, |
| 102 | test_exception=False): |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 103 | """Set up a new builder thread""" |
| 104 | threading.Thread.__init__(self) |
| 105 | self.builder = builder |
| 106 | self.thread_num = thread_num |
Simon Glass | 6029af1 | 2020-04-09 15:08:51 -0600 | [diff] [blame] | 107 | self.mrproper = mrproper |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 108 | self.per_board_out_dir = per_board_out_dir |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 109 | self.test_exception = test_exception |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 110 | |
| 111 | def Make(self, commit, brd, stage, cwd, *args, **kwargs): |
| 112 | """Run 'make' on a particular commit and board. |
| 113 | |
| 114 | The source code will already be checked out, so the 'commit' |
| 115 | argument is only for information. |
| 116 | |
| 117 | Args: |
| 118 | commit: Commit object that is being built |
| 119 | brd: Board object that is being built |
| 120 | stage: Stage of the build. Valid stages are: |
Roger Meier | e0a0e55 | 2014-08-20 22:10:29 +0200 | [diff] [blame] | 121 | mrproper - can be called to clean source |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 122 | config - called to configure for a board |
| 123 | build - the main make invocation - it does the build |
| 124 | args: A list of arguments to pass to 'make' |
Simon Glass | 840be73 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 125 | kwargs: A list of keyword arguments to pass to command.run_pipe() |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 126 | |
| 127 | Returns: |
| 128 | CommandResult object |
| 129 | """ |
| 130 | return self.builder.do_make(commit, brd, stage, cwd, *args, |
| 131 | **kwargs) |
| 132 | |
Simon Glass | b55b57d | 2016-11-16 14:09:25 -0700 | [diff] [blame] | 133 | def RunCommit(self, commit_upto, brd, work_dir, do_config, config_only, |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 134 | force_build, force_build_failures, work_in_output, |
| 135 | adjust_cfg): |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 136 | """Build a particular commit. |
| 137 | |
| 138 | If the build is already done, and we are not forcing a build, we skip |
| 139 | the build and just return the previously-saved results. |
| 140 | |
| 141 | Args: |
| 142 | commit_upto: Commit number to build (0...n-1) |
| 143 | brd: Board object to build |
| 144 | work_dir: Directory to which the source will be checked out |
| 145 | do_config: True to run a make <board>_defconfig on the source |
Simon Glass | b55b57d | 2016-11-16 14:09:25 -0700 | [diff] [blame] | 146 | config_only: Only configure the source, do not build it |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 147 | force_build: Force a build even if one was previously done |
| 148 | force_build_failures: Force a bulid if the previous result showed |
| 149 | failure |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 150 | work_in_output: Use the output directory as the work directory and |
| 151 | don't write to a separate output directory. |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 152 | adjust_cfg (list of str): List of changes to make to .config file |
| 153 | before building. Each is one of (where C is either CONFIG_xxx |
| 154 | or just xxx): |
| 155 | C to enable C |
| 156 | ~C to disable C |
| 157 | C=val to set the value of C (val must have quotes if C is |
| 158 | a string Kconfig |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 159 | |
| 160 | Returns: |
| 161 | tuple containing: |
| 162 | - CommandResult object containing the results of the build |
| 163 | - boolean indicating whether 'make config' is still needed |
| 164 | """ |
| 165 | # Create a default result - it will be overwritte by the call to |
| 166 | # self.Make() below, in the event that we do a build. |
| 167 | result = command.CommandResult() |
| 168 | result.return_code = 0 |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 169 | if work_in_output or self.builder.in_tree: |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 170 | out_dir = work_dir |
| 171 | else: |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 172 | if self.per_board_out_dir: |
| 173 | out_rel_dir = os.path.join('..', brd.target) |
| 174 | else: |
| 175 | out_rel_dir = 'build' |
| 176 | out_dir = os.path.join(work_dir, out_rel_dir) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 177 | |
| 178 | # Check if the job was already completed last time |
| 179 | done_file = self.builder.GetDoneFile(commit_upto, brd.target) |
| 180 | result.already_done = os.path.exists(done_file) |
| 181 | will_build = (force_build or force_build_failures or |
| 182 | not result.already_done) |
Simon Glass | 09f1fe5 | 2014-09-05 19:00:17 -0600 | [diff] [blame] | 183 | if result.already_done: |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 184 | # Get the return code from that build and use it |
| 185 | with open(done_file, 'r') as fd: |
Simon Glass | 4345a6d | 2018-12-10 09:05:23 -0700 | [diff] [blame] | 186 | try: |
| 187 | result.return_code = int(fd.readline()) |
| 188 | except ValueError: |
| 189 | # The file may be empty due to running out of disk space. |
| 190 | # Try a rebuild |
| 191 | result.return_code = RETURN_CODE_RETRY |
Simon Glass | fd3eea1 | 2015-02-05 22:06:13 -0700 | [diff] [blame] | 192 | |
| 193 | # Check the signal that the build needs to be retried |
| 194 | if result.return_code == RETURN_CODE_RETRY: |
| 195 | will_build = True |
| 196 | elif will_build: |
Simon Glass | 09f1fe5 | 2014-09-05 19:00:17 -0600 | [diff] [blame] | 197 | err_file = self.builder.GetErrFile(commit_upto, brd.target) |
| 198 | if os.path.exists(err_file) and os.stat(err_file).st_size: |
| 199 | result.stderr = 'bad' |
| 200 | elif not force_build: |
| 201 | # The build passed, so no need to build it again |
| 202 | will_build = False |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 203 | |
| 204 | if will_build: |
| 205 | # We are going to have to build it. First, get a toolchain |
| 206 | if not self.toolchain: |
| 207 | try: |
| 208 | self.toolchain = self.builder.toolchains.Select(brd.arch) |
| 209 | except ValueError as err: |
| 210 | result.return_code = 10 |
| 211 | result.stdout = '' |
| 212 | result.stderr = str(err) |
| 213 | # TODO(sjg@chromium.org): This gets swallowed, but needs |
| 214 | # to be reported. |
| 215 | |
| 216 | if self.toolchain: |
| 217 | # Checkout the right commit |
| 218 | if self.builder.commits: |
| 219 | commit = self.builder.commits[commit_upto] |
| 220 | if self.builder.checkout: |
| 221 | git_dir = os.path.join(work_dir, '.git') |
Simon Glass | 761648b | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 222 | gitutil.checkout(commit.hash, git_dir, work_dir, |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 223 | force=True) |
| 224 | else: |
| 225 | commit = 'current' |
| 226 | |
| 227 | # Set up the environment and command line |
Simon Glass | d48a46c | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 228 | env = self.toolchain.MakeEnvironment(self.builder.full_path) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 229 | Mkdir(out_dir) |
| 230 | args = [] |
| 231 | cwd = work_dir |
Simon Glass | e309625 | 2014-08-28 09:43:42 -0600 | [diff] [blame] | 232 | src_dir = os.path.realpath(work_dir) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 233 | if not self.builder.in_tree: |
| 234 | if commit_upto is None: |
| 235 | # In this case we are building in the original source |
| 236 | # directory (i.e. the current directory where buildman |
| 237 | # is invoked. The output directory is set to this |
| 238 | # thread's selected work directory. |
| 239 | # |
| 240 | # Symlinks can confuse U-Boot's Makefile since |
| 241 | # we may use '..' in our path, so remove them. |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 242 | out_dir = os.path.realpath(out_dir) |
| 243 | args.append('O=%s' % out_dir) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 244 | cwd = None |
Simon Glass | e309625 | 2014-08-28 09:43:42 -0600 | [diff] [blame] | 245 | src_dir = os.getcwd() |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 246 | else: |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 247 | args.append('O=%s' % out_rel_dir) |
Tom Rini | f06dd81 | 2015-04-01 07:47:41 -0400 | [diff] [blame] | 248 | if self.builder.verbose_build: |
| 249 | args.append('V=1') |
| 250 | else: |
Simon Glass | 655b610 | 2014-12-01 17:34:07 -0700 | [diff] [blame] | 251 | args.append('-s') |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 252 | if self.builder.num_jobs is not None: |
| 253 | args.extend(['-j', str(self.builder.num_jobs)]) |
Daniel Schwierzeck | 20e2ea9 | 2018-01-26 16:31:05 +0100 | [diff] [blame] | 254 | if self.builder.warnings_as_errors: |
| 255 | args.append('KCFLAGS=-Werror') |
Tom Rini | 93ebd46 | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 256 | if self.builder.allow_missing: |
| 257 | args.append('BINMAN_ALLOW_MISSING=1') |
Simon Glass | f6bfcca | 2023-02-21 12:40:28 -0700 | [diff] [blame] | 258 | if self.builder.no_lto: |
| 259 | args.append('NO_LTO=1') |
Simon Glass | 828d70d | 2023-02-21 12:40:29 -0700 | [diff] [blame] | 260 | if self.builder.reproducible_builds: |
| 261 | args.append('SOURCE_DATE_EPOCH=0') |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 262 | config_args = ['%s_defconfig' % brd.target] |
| 263 | config_out = '' |
| 264 | args.extend(self.builder.toolchains.GetMakeArguments(brd)) |
Simon Glass | f77ca5b | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 265 | args.extend(self.toolchain.MakeArgs()) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 266 | |
Simon Glass | e0f1971 | 2020-12-16 17:24:17 -0700 | [diff] [blame] | 267 | # Remove any output targets. Since we use a build directory that |
| 268 | # was previously used by another board, it may have produced an |
| 269 | # SPL image. If we don't remove it (i.e. see do_config and |
| 270 | # self.mrproper below) then it will appear to be the output of |
| 271 | # this build, even if it does not produce SPL images. |
| 272 | build_dir = self.builder.GetBuildDir(commit_upto, brd.target) |
| 273 | for elf in BASE_ELF_FILENAMES: |
| 274 | fname = os.path.join(out_dir, elf) |
| 275 | if os.path.exists(fname): |
| 276 | os.remove(fname) |
| 277 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 278 | # If we need to reconfigure, do that now |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 279 | cfg_file = os.path.join(out_dir, '.config') |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 280 | cmd_list = [] |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 281 | if do_config or adjust_cfg: |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 282 | config_out = '' |
Simon Glass | 6029af1 | 2020-04-09 15:08:51 -0600 | [diff] [blame] | 283 | if self.mrproper: |
Stephen Warren | 97c9690 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 284 | result = self.Make(commit, brd, 'mrproper', cwd, |
| 285 | 'mrproper', *args, env=env) |
| 286 | config_out += result.combined |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 287 | cmd_list.append([self.builder.gnu_make, 'mrproper', |
| 288 | *args]) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 289 | result = self.Make(commit, brd, 'config', cwd, |
| 290 | *(args + config_args), env=env) |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 291 | cmd_list.append([self.builder.gnu_make] + args + |
| 292 | config_args) |
Simon Glass | 413f91a | 2015-02-05 22:06:12 -0700 | [diff] [blame] | 293 | config_out += result.combined |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 294 | do_config = False # No need to configure next time |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 295 | if adjust_cfg: |
| 296 | cfgutil.adjust_cfg_file(cfg_file, adjust_cfg) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 297 | if result.return_code == 0: |
Simon Glass | b55b57d | 2016-11-16 14:09:25 -0700 | [diff] [blame] | 298 | if config_only: |
Simon Glass | 739e851 | 2016-11-13 14:25:51 -0700 | [diff] [blame] | 299 | args.append('cfg') |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 300 | result = self.Make(commit, brd, 'build', cwd, *args, |
| 301 | env=env) |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 302 | cmd_list.append([self.builder.gnu_make] + args) |
Simon Glass | 199da41 | 2022-11-09 19:14:48 -0700 | [diff] [blame] | 303 | if (result.return_code == 2 and |
| 304 | ('Some images are invalid' in result.stderr)): |
| 305 | # This is handled later by the check for output in |
| 306 | # stderr |
| 307 | result.return_code = 0 |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 308 | if adjust_cfg: |
| 309 | errs = cfgutil.check_cfg_file(cfg_file, adjust_cfg) |
| 310 | if errs: |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 311 | result.stderr += errs |
| 312 | result.return_code = 1 |
Simon Glass | e309625 | 2014-08-28 09:43:42 -0600 | [diff] [blame] | 313 | result.stderr = result.stderr.replace(src_dir + '/', '') |
Simon Glass | 413f91a | 2015-02-05 22:06:12 -0700 | [diff] [blame] | 314 | if self.builder.verbose_build: |
| 315 | result.stdout = config_out + result.stdout |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 316 | result.cmd_list = cmd_list |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 317 | else: |
| 318 | result.return_code = 1 |
| 319 | result.stderr = 'No tool chain for %s\n' % brd.arch |
| 320 | result.already_done = False |
| 321 | |
| 322 | result.toolchain = self.toolchain |
| 323 | result.brd = brd |
| 324 | result.commit_upto = commit_upto |
| 325 | result.out_dir = out_dir |
| 326 | return result, do_config |
| 327 | |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 328 | def _WriteResult(self, result, keep_outputs, work_in_output): |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 329 | """Write a built result to the output directory. |
| 330 | |
| 331 | Args: |
| 332 | result: CommandResult object containing result to write |
| 333 | keep_outputs: True to store the output binaries, False |
| 334 | to delete them |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 335 | work_in_output: Use the output directory as the work directory and |
| 336 | don't write to a separate output directory. |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 337 | """ |
Simon Glass | fd3eea1 | 2015-02-05 22:06:13 -0700 | [diff] [blame] | 338 | # If we think this might have been aborted with Ctrl-C, record the |
| 339 | # failure but not that we are 'done' with this board. A retry may fix |
| 340 | # it. |
Simon Glass | 2e73745 | 2021-10-19 21:43:23 -0600 | [diff] [blame] | 341 | maybe_aborted = result.stderr and 'No child processes' in result.stderr |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 342 | |
Simon Glass | 2e73745 | 2021-10-19 21:43:23 -0600 | [diff] [blame] | 343 | if result.return_code >= 0 and result.already_done: |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 344 | return |
| 345 | |
| 346 | # Write the output and stderr |
| 347 | output_dir = self.builder._GetOutputDir(result.commit_upto) |
| 348 | Mkdir(output_dir) |
| 349 | build_dir = self.builder.GetBuildDir(result.commit_upto, |
| 350 | result.brd.target) |
| 351 | Mkdir(build_dir) |
| 352 | |
| 353 | outfile = os.path.join(build_dir, 'log') |
| 354 | with open(outfile, 'w') as fd: |
| 355 | if result.stdout: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 356 | fd.write(result.stdout) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 357 | |
| 358 | errfile = self.builder.GetErrFile(result.commit_upto, |
| 359 | result.brd.target) |
| 360 | if result.stderr: |
| 361 | with open(errfile, 'w') as fd: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 362 | fd.write(result.stderr) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 363 | elif os.path.exists(errfile): |
| 364 | os.remove(errfile) |
| 365 | |
Simon Glass | 2e73745 | 2021-10-19 21:43:23 -0600 | [diff] [blame] | 366 | # Fatal error |
| 367 | if result.return_code < 0: |
| 368 | return |
| 369 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 370 | if result.toolchain: |
| 371 | # Write the build result and toolchain information. |
| 372 | done_file = self.builder.GetDoneFile(result.commit_upto, |
| 373 | result.brd.target) |
| 374 | with open(done_file, 'w') as fd: |
Simon Glass | fd3eea1 | 2015-02-05 22:06:13 -0700 | [diff] [blame] | 375 | if maybe_aborted: |
| 376 | # Special code to indicate we need to retry |
| 377 | fd.write('%s' % RETURN_CODE_RETRY) |
| 378 | else: |
| 379 | fd.write('%s' % result.return_code) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 380 | with open(os.path.join(build_dir, 'toolchain'), 'w') as fd: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 381 | print('gcc', result.toolchain.gcc, file=fd) |
| 382 | print('path', result.toolchain.path, file=fd) |
| 383 | print('cross', result.toolchain.cross, file=fd) |
| 384 | print('arch', result.toolchain.arch, file=fd) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 385 | fd.write('%s' % result.return_code) |
| 386 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 387 | # Write out the image and function size information and an objdump |
Simon Glass | d48a46c | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 388 | env = result.toolchain.MakeEnvironment(self.builder.full_path) |
Simon Glass | 93008e2 | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 389 | with open(os.path.join(build_dir, 'out-env'), 'wb') as fd: |
Simon Glass | 9e90d31 | 2019-01-07 16:44:23 -0700 | [diff] [blame] | 390 | for var in sorted(env.keys()): |
Simon Glass | 93008e2 | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 391 | fd.write(b'%s="%s"' % (var, env[var])) |
Simon Glass | 1382b1d | 2023-02-21 12:40:27 -0700 | [diff] [blame] | 392 | |
| 393 | with open(os.path.join(build_dir, 'out-cmd'), 'w', |
| 394 | encoding='utf-8') as fd: |
| 395 | for cmd in result.cmd_list: |
| 396 | print(' '.join(cmd), file=fd) |
| 397 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 398 | lines = [] |
Simon Glass | e0f1971 | 2020-12-16 17:24:17 -0700 | [diff] [blame] | 399 | for fname in BASE_ELF_FILENAMES: |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 400 | cmd = ['%snm' % self.toolchain.cross, '--size-sort', fname] |
Simon Glass | 840be73 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 401 | nm_result = command.run_pipe([cmd], capture=True, |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 402 | capture_stderr=True, cwd=result.out_dir, |
| 403 | raise_on_error=False, env=env) |
| 404 | if nm_result.stdout: |
| 405 | nm = self.builder.GetFuncSizesFile(result.commit_upto, |
| 406 | result.brd.target, fname) |
| 407 | with open(nm, 'w') as fd: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 408 | print(nm_result.stdout, end=' ', file=fd) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 409 | |
| 410 | cmd = ['%sobjdump' % self.toolchain.cross, '-h', fname] |
Simon Glass | 840be73 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 411 | dump_result = command.run_pipe([cmd], capture=True, |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 412 | capture_stderr=True, cwd=result.out_dir, |
| 413 | raise_on_error=False, env=env) |
| 414 | rodata_size = '' |
| 415 | if dump_result.stdout: |
| 416 | objdump = self.builder.GetObjdumpFile(result.commit_upto, |
| 417 | result.brd.target, fname) |
| 418 | with open(objdump, 'w') as fd: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 419 | print(dump_result.stdout, end=' ', file=fd) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 420 | for line in dump_result.stdout.splitlines(): |
| 421 | fields = line.split() |
| 422 | if len(fields) > 5 and fields[1] == '.rodata': |
| 423 | rodata_size = fields[2] |
| 424 | |
| 425 | cmd = ['%ssize' % self.toolchain.cross, fname] |
Simon Glass | 840be73 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 426 | size_result = command.run_pipe([cmd], capture=True, |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 427 | capture_stderr=True, cwd=result.out_dir, |
| 428 | raise_on_error=False, env=env) |
| 429 | if size_result.stdout: |
| 430 | lines.append(size_result.stdout.splitlines()[1] + ' ' + |
| 431 | rodata_size) |
| 432 | |
Alex Kiernan | f07ed23 | 2018-05-31 04:48:33 +0000 | [diff] [blame] | 433 | # Extract the environment from U-Boot and dump it out |
| 434 | cmd = ['%sobjcopy' % self.toolchain.cross, '-O', 'binary', |
| 435 | '-j', '.rodata.default_environment', |
| 436 | 'env/built-in.o', 'uboot.env'] |
Simon Glass | 840be73 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 437 | command.run_pipe([cmd], capture=True, |
Alex Kiernan | f07ed23 | 2018-05-31 04:48:33 +0000 | [diff] [blame] | 438 | capture_stderr=True, cwd=result.out_dir, |
| 439 | raise_on_error=False, env=env) |
| 440 | ubootenv = os.path.join(result.out_dir, 'uboot.env') |
Simon Glass | e3c85ab | 2020-04-17 17:51:34 -0600 | [diff] [blame] | 441 | if not work_in_output: |
| 442 | self.CopyFiles(result.out_dir, build_dir, '', ['uboot.env']) |
Alex Kiernan | f07ed23 | 2018-05-31 04:48:33 +0000 | [diff] [blame] | 443 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 444 | # Write out the image sizes file. This is similar to the output |
| 445 | # of binutil's 'size' utility, but it omits the header line and |
| 446 | # adds an additional hex value at the end of each line for the |
| 447 | # rodata size |
| 448 | if len(lines): |
| 449 | sizes = self.builder.GetSizesFile(result.commit_upto, |
| 450 | result.brd.target) |
| 451 | with open(sizes, 'w') as fd: |
Simon Glass | c78ed66 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 452 | print('\n'.join(lines), file=fd) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 453 | |
Simon Glass | e3c85ab | 2020-04-17 17:51:34 -0600 | [diff] [blame] | 454 | if not work_in_output: |
| 455 | # Write out the configuration files, with a special case for SPL |
| 456 | for dirname in ['', 'spl', 'tpl']: |
| 457 | self.CopyFiles( |
| 458 | result.out_dir, build_dir, dirname, |
| 459 | ['u-boot.cfg', 'spl/u-boot-spl.cfg', 'tpl/u-boot-tpl.cfg', |
| 460 | '.config', 'include/autoconf.mk', |
| 461 | 'include/generated/autoconf.h']) |
Simon Glass | 4b14c53 | 2015-02-05 22:06:14 -0700 | [diff] [blame] | 462 | |
Simon Glass | e3c85ab | 2020-04-17 17:51:34 -0600 | [diff] [blame] | 463 | # Now write the actual build output |
| 464 | if keep_outputs: |
| 465 | self.CopyFiles( |
| 466 | result.out_dir, build_dir, '', |
| 467 | ['u-boot*', '*.bin', '*.map', '*.img', 'MLO', 'SPL', |
| 468 | 'include/autoconf.mk', 'spl/u-boot-spl*']) |
Simon Glass | 4b14c53 | 2015-02-05 22:06:14 -0700 | [diff] [blame] | 469 | |
| 470 | def CopyFiles(self, out_dir, build_dir, dirname, patterns): |
| 471 | """Copy files from the build directory to the output. |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 472 | |
Simon Glass | 4b14c53 | 2015-02-05 22:06:14 -0700 | [diff] [blame] | 473 | Args: |
| 474 | out_dir: Path to output directory containing the files |
| 475 | build_dir: Place to copy the files |
| 476 | dirname: Source directory, '' for normal U-Boot, 'spl' for SPL |
| 477 | patterns: A list of filenames (strings) to copy, each relative |
| 478 | to the build directory |
| 479 | """ |
| 480 | for pattern in patterns: |
| 481 | file_list = glob.glob(os.path.join(out_dir, dirname, pattern)) |
| 482 | for fname in file_list: |
| 483 | target = os.path.basename(fname) |
| 484 | if dirname: |
| 485 | base, ext = os.path.splitext(target) |
| 486 | if ext: |
| 487 | target = '%s-%s%s' % (base, dirname, ext) |
| 488 | shutil.copy(fname, os.path.join(build_dir, target)) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 489 | |
Simon Glass | a3d0144 | 2021-04-11 16:27:26 +1200 | [diff] [blame] | 490 | def _SendResult(self, result): |
| 491 | """Send a result to the builder for processing |
| 492 | |
| 493 | Args: |
| 494 | result: CommandResult object containing the results of the build |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 495 | |
| 496 | Raises: |
| 497 | ValueError if self.test_exception is true (for testing) |
Simon Glass | a3d0144 | 2021-04-11 16:27:26 +1200 | [diff] [blame] | 498 | """ |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 499 | if self.test_exception: |
| 500 | raise ValueError('test exception') |
Simon Glass | a3d0144 | 2021-04-11 16:27:26 +1200 | [diff] [blame] | 501 | if self.thread_num != -1: |
| 502 | self.builder.out_queue.put(result) |
| 503 | else: |
| 504 | self.builder.ProcessResult(result) |
| 505 | |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 506 | def RunJob(self, job): |
| 507 | """Run a single job |
| 508 | |
| 509 | A job consists of a building a list of commits for a particular board. |
| 510 | |
| 511 | Args: |
| 512 | job: Job to build |
Simon Glass | c635d89 | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 513 | |
| 514 | Returns: |
| 515 | List of Result objects |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 516 | """ |
Simon Glass | 8132f98 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 517 | brd = job.brd |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 518 | work_dir = self.builder.GetThreadDir(self.thread_num) |
| 519 | self.toolchain = None |
| 520 | if job.commits: |
| 521 | # Run 'make board_defconfig' on the first commit |
| 522 | do_config = True |
| 523 | commit_upto = 0 |
| 524 | force_build = False |
| 525 | for commit_upto in range(0, len(job.commits), job.step): |
| 526 | result, request_config = self.RunCommit(commit_upto, brd, |
Simon Glass | b55b57d | 2016-11-16 14:09:25 -0700 | [diff] [blame] | 527 | work_dir, do_config, self.builder.config_only, |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 528 | force_build or self.builder.force_build, |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 529 | self.builder.force_build_failures, |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 530 | job.work_in_output, job.adjust_cfg) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 531 | failed = result.return_code or result.stderr |
| 532 | did_config = do_config |
| 533 | if failed and not do_config: |
| 534 | # If our incremental build failed, try building again |
| 535 | # with a reconfig. |
| 536 | if self.builder.force_config_on_failure: |
| 537 | result, request_config = self.RunCommit(commit_upto, |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 538 | brd, work_dir, True, False, True, False, |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 539 | job.work_in_output, job.adjust_cfg) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 540 | did_config = True |
| 541 | if not self.builder.force_reconfig: |
| 542 | do_config = request_config |
| 543 | |
| 544 | # If we built that commit, then config is done. But if we got |
| 545 | # an warning, reconfig next time to force it to build the same |
| 546 | # files that created warnings this time. Otherwise an |
| 547 | # incremental build may not build the same file, and we will |
| 548 | # think that the warning has gone away. |
| 549 | # We could avoid this by using -Werror everywhere... |
| 550 | # For errors, the problem doesn't happen, since presumably |
| 551 | # the build stopped and didn't generate output, so will retry |
| 552 | # that file next time. So we could detect warnings and deal |
| 553 | # with them specially here. For now, we just reconfigure if |
| 554 | # anything goes work. |
| 555 | # Of course this is substantially slower if there are build |
| 556 | # errors/warnings (e.g. 2-3x slower even if only 10% of builds |
| 557 | # have problems). |
| 558 | if (failed and not result.already_done and not did_config and |
| 559 | self.builder.force_config_on_failure): |
| 560 | # If this build failed, try the next one with a |
| 561 | # reconfigure. |
| 562 | # Sometimes if the board_config.h file changes it can mess |
| 563 | # with dependencies, and we get: |
| 564 | # make: *** No rule to make target `include/autoconf.mk', |
| 565 | # needed by `depend'. |
| 566 | do_config = True |
| 567 | force_build = True |
| 568 | else: |
| 569 | force_build = False |
| 570 | if self.builder.force_config_on_failure: |
| 571 | if failed: |
| 572 | do_config = True |
| 573 | result.commit_upto = commit_upto |
| 574 | if result.return_code < 0: |
| 575 | raise ValueError('Interrupt') |
| 576 | |
| 577 | # We have the build results, so output the result |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 578 | self._WriteResult(result, job.keep_outputs, job.work_in_output) |
Simon Glass | a3d0144 | 2021-04-11 16:27:26 +1200 | [diff] [blame] | 579 | self._SendResult(result) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 580 | else: |
| 581 | # Just build the currently checked-out build |
| 582 | result, request_config = self.RunCommit(None, brd, work_dir, True, |
Simon Glass | b55b57d | 2016-11-16 14:09:25 -0700 | [diff] [blame] | 583 | self.builder.config_only, True, |
Simon Glass | e5650a8 | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 584 | self.builder.force_build_failures, job.work_in_output, |
| 585 | job.adjust_cfg) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 586 | result.commit_upto = 0 |
Simon Glass | b6eb8cf | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 587 | self._WriteResult(result, job.keep_outputs, job.work_in_output) |
Simon Glass | a3d0144 | 2021-04-11 16:27:26 +1200 | [diff] [blame] | 588 | self._SendResult(result) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 589 | |
| 590 | def run(self): |
| 591 | """Our thread's run function |
| 592 | |
| 593 | This thread picks a job from the queue, runs it, and then goes to the |
| 594 | next job. |
| 595 | """ |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 596 | while True: |
| 597 | job = self.builder.queue.get() |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 598 | try: |
| 599 | self.RunJob(job) |
| 600 | except Exception as e: |
Simon Glass | 9bac167 | 2022-01-22 05:07:32 -0700 | [diff] [blame] | 601 | print('Thread exception (use -T0 to run without threads):', e) |
Simon Glass | 9bf9a72 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 602 | self.builder.thread_exceptions.append(e) |
Simon Glass | 4a1e88b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 603 | self.builder.queue.task_done() |