Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013 The Chromium OS Authors. |
| 3 | # |
| 4 | # Bloat-o-meter code used here Copyright 2004 Matt Mackall <mpm@selenic.com> |
| 5 | # |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 6 | |
| 7 | import collections |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 8 | from datetime import datetime, timedelta |
| 9 | import glob |
| 10 | import os |
| 11 | import re |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 12 | import queue |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 13 | import shutil |
Simon Glass | 2f25664 | 2016-09-18 16:48:37 -0600 | [diff] [blame] | 14 | import signal |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 15 | import string |
| 16 | import sys |
Simon Glass | d436e38 | 2016-09-18 16:48:35 -0600 | [diff] [blame] | 17 | import threading |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 18 | import time |
| 19 | |
Simon Glass | 0ede00f | 2020-04-17 18:09:02 -0600 | [diff] [blame] | 20 | from buildman import builderthread |
| 21 | from buildman import toolchain |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 22 | from patman import gitutil |
Simon Glass | 4583c00 | 2023-02-23 18:18:04 -0700 | [diff] [blame] | 23 | from u_boot_pylib import command |
| 24 | from u_boot_pylib import terminal |
| 25 | from u_boot_pylib.terminal import tprint |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 26 | |
Simon Glass | 7bf83a5 | 2021-10-19 21:43:24 -0600 | [diff] [blame] | 27 | # This indicates an new int or hex Kconfig property with no default |
| 28 | # It hangs the build since the 'conf' tool cannot proceed without valid input. |
| 29 | # |
| 30 | # We get a repeat sequence of something like this: |
| 31 | # >> |
| 32 | # Break things (BREAK_ME) [] (NEW) |
| 33 | # Error in reading or end of file. |
| 34 | # << |
| 35 | # which indicates that BREAK_ME has an empty default |
| 36 | RE_NO_DEFAULT = re.compile(b'\((\w+)\) \[] \(NEW\)') |
| 37 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 38 | """ |
| 39 | Theory of Operation |
| 40 | |
| 41 | Please see README for user documentation, and you should be familiar with |
| 42 | that before trying to make sense of this. |
| 43 | |
| 44 | Buildman works by keeping the machine as busy as possible, building different |
| 45 | commits for different boards on multiple CPUs at once. |
| 46 | |
| 47 | The source repo (self.git_dir) contains all the commits to be built. Each |
| 48 | thread works on a single board at a time. It checks out the first commit, |
| 49 | configures it for that board, then builds it. Then it checks out the next |
| 50 | commit and builds it (typically without re-configuring). When it runs out |
| 51 | of commits, it gets another job from the builder and starts again with that |
| 52 | board. |
| 53 | |
| 54 | Clearly the builder threads could work either way - they could check out a |
| 55 | commit and then built it for all boards. Using separate directories for each |
| 56 | commit/board pair they could leave their build product around afterwards |
| 57 | also. |
| 58 | |
| 59 | The intent behind building a single board for multiple commits, is to make |
| 60 | use of incremental builds. Since each commit is built incrementally from |
| 61 | the previous one, builds are faster. Reconfiguring for a different board |
| 62 | removes all intermediate object files. |
| 63 | |
| 64 | Many threads can be working at once, but each has its own working directory. |
| 65 | When a thread finishes a build, it puts the output files into a result |
| 66 | directory. |
| 67 | |
| 68 | The base directory used by buildman is normally '../<branch>', i.e. |
| 69 | a directory higher than the source repository and named after the branch |
| 70 | being built. |
| 71 | |
| 72 | Within the base directory, we have one subdirectory for each commit. Within |
| 73 | that is one subdirectory for each board. Within that is the build output for |
| 74 | that commit/board combination. |
| 75 | |
| 76 | Buildman also create working directories for each thread, in a .bm-work/ |
| 77 | subdirectory in the base dir. |
| 78 | |
| 79 | As an example, say we are building branch 'us-net' for boards 'sandbox' and |
| 80 | 'seaboard', and say that us-net has two commits. We will have directories |
| 81 | like this: |
| 82 | |
| 83 | us-net/ base directory |
Ovidiu Panait | 7664b03 | 2020-05-15 09:30:12 +0300 | [diff] [blame] | 84 | 01_g4ed4ebc_net--Add-tftp-speed-/ |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 85 | sandbox/ |
| 86 | u-boot.bin |
| 87 | seaboard/ |
| 88 | u-boot.bin |
Ovidiu Panait | 7664b03 | 2020-05-15 09:30:12 +0300 | [diff] [blame] | 89 | 02_g4ed4ebc_net--Check-tftp-comp/ |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 90 | sandbox/ |
| 91 | u-boot.bin |
| 92 | seaboard/ |
| 93 | u-boot.bin |
| 94 | .bm-work/ |
| 95 | 00/ working directory for thread 0 (contains source checkout) |
| 96 | build/ build output |
| 97 | 01/ working directory for thread 1 |
| 98 | build/ build output |
| 99 | ... |
| 100 | u-boot/ source directory |
| 101 | .git/ repository |
| 102 | """ |
| 103 | |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 104 | """Holds information about a particular error line we are outputing |
| 105 | |
| 106 | char: Character representation: '+': error, '-': fixed error, 'w+': warning, |
| 107 | 'w-' = fixed warning |
| 108 | boards: List of Board objects which have line in the error/warning output |
| 109 | errline: The text of the error line |
| 110 | """ |
Simon Glass | cc2c0d1 | 2022-07-11 19:04:00 -0600 | [diff] [blame] | 111 | ErrLine = collections.namedtuple('ErrLine', 'char,brds,errline') |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 112 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 113 | # Possible build outcomes |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 114 | OUTCOME_OK, OUTCOME_WARNING, OUTCOME_ERROR, OUTCOME_UNKNOWN = list(range(4)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 115 | |
Simon Glass | 9a6d2e2 | 2017-04-12 18:23:26 -0600 | [diff] [blame] | 116 | # Translate a commit subject into a valid filename (and handle unicode) |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 117 | trans_valid_chars = str.maketrans('/: ', '---') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 118 | |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 119 | BASE_CONFIG_FILENAMES = [ |
| 120 | 'u-boot.cfg', 'u-boot-spl.cfg', 'u-boot-tpl.cfg' |
| 121 | ] |
| 122 | |
| 123 | EXTRA_CONFIG_FILENAMES = [ |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 124 | '.config', '.config-spl', '.config-tpl', |
| 125 | 'autoconf.mk', 'autoconf-spl.mk', 'autoconf-tpl.mk', |
| 126 | 'autoconf.h', 'autoconf-spl.h','autoconf-tpl.h', |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 127 | ] |
| 128 | |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 129 | class Config: |
| 130 | """Holds information about configuration settings for a board.""" |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 131 | def __init__(self, config_filename, target): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 132 | self.target = target |
| 133 | self.config = {} |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 134 | for fname in config_filename: |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 135 | self.config[fname] = {} |
| 136 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 137 | def add(self, fname, key, value): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 138 | self.config[fname][key] = value |
| 139 | |
| 140 | def __hash__(self): |
| 141 | val = 0 |
| 142 | for fname in self.config: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 143 | for key, value in self.config[fname].items(): |
| 144 | print(key, value) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 145 | val = val ^ hash(key) & hash(value) |
| 146 | return val |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 147 | |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 148 | class Environment: |
| 149 | """Holds information about environment variables for a board.""" |
| 150 | def __init__(self, target): |
| 151 | self.target = target |
| 152 | self.environment = {} |
| 153 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 154 | def add(self, key, value): |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 155 | self.environment[key] = value |
| 156 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 157 | class Builder: |
| 158 | """Class for building U-Boot for a particular commit. |
| 159 | |
| 160 | Public members: (many should ->private) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 161 | already_done: Number of builds already completed |
| 162 | base_dir: Base directory to use for builder |
| 163 | checkout: True to check out source, False to skip that step. |
| 164 | This is used for testing. |
| 165 | col: terminal.Color() object |
Simon Glass | 6a0c7b4 | 2023-07-19 17:49:03 -0600 | [diff] [blame] | 166 | count: Total number of commits to build, which is the number of commits |
| 167 | multiplied by the number of boards |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 168 | do_make: Method to call to invoke Make |
| 169 | fail: Number of builds that failed due to error |
| 170 | force_build: Force building even if a build already exists |
| 171 | force_config_on_failure: If a commit fails for a board, disable |
| 172 | incremental building for the next commit we build for that |
| 173 | board, so that we will see all warnings/errors again. |
Simon Glass | 4266dc2 | 2014-07-13 12:22:31 -0600 | [diff] [blame] | 174 | force_build_failures: If a previously-built build (i.e. built on |
| 175 | a previous run of buildman) is marked as failed, rebuild it. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 176 | git_dir: Git directory containing source repository |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 177 | num_jobs: Number of jobs to run at once (passed to make as -j) |
| 178 | num_threads: Number of builder threads to run |
| 179 | out_queue: Queue of results to process |
| 180 | re_make_err: Compiled regular expression for ignore_lines |
| 181 | queue: Queue of jobs to run |
| 182 | threads: List of active threads |
| 183 | toolchains: Toolchains object to use for building |
| 184 | upto: Current commit number we are building (0.count-1) |
| 185 | warned: Number of builds that produced at least one warning |
Simon Glass | 97e9152 | 2014-07-14 17:51:02 -0600 | [diff] [blame] | 186 | force_reconfig: Reconfigure U-Boot on each comiit. This disables |
| 187 | incremental building, where buildman reconfigures on the first |
| 188 | commit for a baord, and then just does an incremental build for |
| 189 | the following commits. In fact buildman will reconfigure and |
| 190 | retry for any failing commits, so generally the only effect of |
| 191 | this option is to slow things down. |
Simon Glass | 189a496 | 2014-07-14 17:51:03 -0600 | [diff] [blame] | 192 | in_tree: Build U-Boot in-tree instead of specifying an output |
| 193 | directory separate from the source code. This option is really |
| 194 | only useful for testing in-tree builds. |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 195 | work_in_output: Use the output directory as the work directory and |
| 196 | don't write to a separate output directory. |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 197 | thread_exceptions: List of exceptions raised by thread jobs |
Simon Glass | 93202d7 | 2023-02-21 12:40:28 -0700 | [diff] [blame] | 198 | no_lto (bool): True to set the NO_LTO flag when building |
Simon Glass | bfb708a | 2023-02-21 12:40:29 -0700 | [diff] [blame] | 199 | reproducible_builds (bool): True to set SOURCE_DATE_EPOCH=0 for builds |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 200 | |
| 201 | Private members: |
| 202 | _base_board_dict: Last-summarised Dict of boards |
| 203 | _base_err_lines: Last-summarised list of errors |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 204 | _base_warn_lines: Last-summarised list of warnings |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 205 | _build_period_us: Time taken for a single build (float object). |
| 206 | _complete_delay: Expected delay until completion (timedelta) |
| 207 | _next_delay_update: Next time we plan to display a progress update |
| 208 | (datatime) |
| 209 | _show_unknown: Show unknown boards (those not built) in summary |
Simon Glass | 7b33f21 | 2020-04-09 15:08:47 -0600 | [diff] [blame] | 210 | _start_time: Start time for the build |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 211 | _timestamps: List of timestamps for the completion of the last |
| 212 | last _timestamp_count builds. Each is a datetime object. |
| 213 | _timestamp_count: Number of timestamps to keep in our list. |
| 214 | _working_dir: Base working directory containing all threads |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 215 | _single_builder: BuilderThread object for the singer builder, if |
| 216 | threading is not being used |
Simon Glass | 7bf83a5 | 2021-10-19 21:43:24 -0600 | [diff] [blame] | 217 | _terminated: Thread was terminated due to an error |
| 218 | _restarting_config: True if 'Restart config' is detected in output |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 219 | _ide: Produce output suitable for an Integrated Development Environment, |
| 220 | i.e. dont emit progress information and put errors/warnings on stderr |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 221 | """ |
| 222 | class Outcome: |
| 223 | """Records a build outcome for a single make invocation |
| 224 | |
| 225 | Public Members: |
| 226 | rc: Outcome value (OUTCOME_...) |
| 227 | err_lines: List of error lines or [] if none |
| 228 | sizes: Dictionary of image size information, keyed by filename |
| 229 | - Each value is itself a dictionary containing |
| 230 | values for 'text', 'data' and 'bss', being the integer |
| 231 | size in bytes of each section. |
| 232 | func_sizes: Dictionary keyed by filename - e.g. 'u-boot'. Each |
| 233 | value is itself a dictionary: |
| 234 | key: function name |
| 235 | value: Size of function in bytes |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 236 | config: Dictionary keyed by filename - e.g. '.config'. Each |
| 237 | value is itself a dictionary: |
| 238 | key: config name |
| 239 | value: config value |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 240 | environment: Dictionary keyed by environment variable, Each |
| 241 | value is the value of environment variable. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 242 | """ |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 243 | def __init__(self, rc, err_lines, sizes, func_sizes, config, |
| 244 | environment): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 245 | self.rc = rc |
| 246 | self.err_lines = err_lines |
| 247 | self.sizes = sizes |
| 248 | self.func_sizes = func_sizes |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 249 | self.config = config |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 250 | self.environment = environment |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 251 | |
| 252 | def __init__(self, toolchains, base_dir, git_dir, num_threads, num_jobs, |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 253 | gnu_make='make', checkout=True, show_unknown=True, step=1, |
Stephen Warren | f79f1e0 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 254 | no_subdirs=False, full_path=False, verbose_build=False, |
Simon Glass | eb70a2c | 2020-04-09 15:08:51 -0600 | [diff] [blame] | 255 | mrproper=False, per_board_out_dir=False, |
Daniel Schwierzeck | 2371d1b | 2018-01-26 16:31:05 +0100 | [diff] [blame] | 256 | config_only=False, squash_config_y=False, |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 257 | warnings_as_errors=False, work_in_output=False, |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 258 | test_thread_exceptions=False, adjust_cfg=None, |
Simon Glass | ffd06d3 | 2023-07-19 17:48:52 -0600 | [diff] [blame] | 259 | allow_missing=False, no_lto=False, reproducible_builds=False, |
| 260 | force_build=False, force_build_failures=False, |
| 261 | force_reconfig=False, in_tree=False, |
| 262 | force_config_on_failure=False, make_func=None): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 263 | """Create a new Builder object |
| 264 | |
| 265 | Args: |
| 266 | toolchains: Toolchains object to use for building |
| 267 | base_dir: Base directory to use for builder |
| 268 | git_dir: Git directory containing source repository |
| 269 | num_threads: Number of builder threads to run |
| 270 | num_jobs: Number of jobs to run at once (passed to make as -j) |
Masahiro Yamada | 9979692 | 2014-07-22 11:19:09 +0900 | [diff] [blame] | 271 | gnu_make: the command name of GNU Make. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 272 | checkout: True to check out source, False to skip that step. |
| 273 | This is used for testing. |
| 274 | show_unknown: Show unknown boards (those not built) in summary |
| 275 | step: 1 to process every commit, n to process every nth commit |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 276 | no_subdirs: Don't create subdirectories when building current |
| 277 | source for a single board |
| 278 | full_path: Return the full path in CROSS_COMPILE and don't set |
| 279 | PATH |
Simon Glass | d2ce658 | 2014-12-01 17:34:07 -0700 | [diff] [blame] | 280 | verbose_build: Run build with V=1 and don't use 'make -s' |
Simon Glass | eb70a2c | 2020-04-09 15:08:51 -0600 | [diff] [blame] | 281 | mrproper: Always run 'make mrproper' when configuring |
Stephen Warren | f79f1e0 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 282 | per_board_out_dir: Build in a separate persistent directory per |
| 283 | board rather than a thread-specific directory |
Simon Glass | b50113f | 2016-11-13 14:25:51 -0700 | [diff] [blame] | 284 | config_only: Only configure each build, don't build it |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 285 | squash_config_y: Convert CONFIG options with the value 'y' to '1' |
Daniel Schwierzeck | 2371d1b | 2018-01-26 16:31:05 +0100 | [diff] [blame] | 286 | warnings_as_errors: Treat all compiler warnings as errors |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 287 | work_in_output: Use the output directory as the work directory and |
| 288 | don't write to a separate output directory. |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 289 | test_thread_exceptions: Uses for tests only, True to make the |
| 290 | threads raise an exception instead of reporting their result. |
| 291 | This simulates a failure in the code somewhere |
Simon Glass | 2b4806e | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 292 | adjust_cfg_list (list of str): List of changes to make to .config |
| 293 | file before building. Each is one of (where C is the config |
| 294 | option with or without the CONFIG_ prefix) |
| 295 | |
| 296 | C to enable C |
| 297 | ~C to disable C |
| 298 | C=val to set the value of C (val must have quotes if C is |
| 299 | a string Kconfig |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 300 | allow_missing: Run build with BINMAN_ALLOW_MISSING=1 |
Simon Glass | 93202d7 | 2023-02-21 12:40:28 -0700 | [diff] [blame] | 301 | no_lto (bool): True to set the NO_LTO flag when building |
Simon Glass | ffd06d3 | 2023-07-19 17:48:52 -0600 | [diff] [blame] | 302 | force_build (bool): Rebuild even commits that are already built |
| 303 | force_build_failures (bool): Rebuild commits that have not been |
| 304 | built, or failed to build |
| 305 | force_reconfig (bool): Reconfigure on each commit |
| 306 | in_tree (bool): Bulid in tree instead of out-of-tree |
| 307 | force_config_on_failure (bool): Reconfigure the build before |
| 308 | retrying a failed build |
| 309 | make_func (function): Function to call to run 'make' |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 310 | """ |
| 311 | self.toolchains = toolchains |
| 312 | self.base_dir = base_dir |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 313 | if work_in_output: |
| 314 | self._working_dir = base_dir |
| 315 | else: |
| 316 | self._working_dir = os.path.join(base_dir, '.bm-work') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 317 | self.threads = [] |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 318 | self.do_make = make_func or self.make |
Masahiro Yamada | 9979692 | 2014-07-22 11:19:09 +0900 | [diff] [blame] | 319 | self.gnu_make = gnu_make |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 320 | self.checkout = checkout |
| 321 | self.num_threads = num_threads |
| 322 | self.num_jobs = num_jobs |
| 323 | self.already_done = 0 |
| 324 | self.force_build = False |
| 325 | self.git_dir = git_dir |
| 326 | self._show_unknown = show_unknown |
| 327 | self._timestamp_count = 10 |
| 328 | self._build_period_us = None |
| 329 | self._complete_delay = None |
| 330 | self._next_delay_update = datetime.now() |
Simon Glass | 2ce06f5 | 2023-09-07 10:00:19 -0600 | [diff] [blame] | 331 | self._start_time = None |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 332 | self._step = step |
Simon Glass | 28370c1 | 2014-08-09 15:33:06 -0600 | [diff] [blame] | 333 | self._error_lines = 0 |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 334 | self.no_subdirs = no_subdirs |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 335 | self.full_path = full_path |
Simon Glass | d2ce658 | 2014-12-01 17:34:07 -0700 | [diff] [blame] | 336 | self.verbose_build = verbose_build |
Simon Glass | b50113f | 2016-11-13 14:25:51 -0700 | [diff] [blame] | 337 | self.config_only = config_only |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 338 | self.squash_config_y = squash_config_y |
| 339 | self.config_filenames = BASE_CONFIG_FILENAMES |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 340 | self.work_in_output = work_in_output |
Simon Glass | 2b4806e | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 341 | self.adjust_cfg = adjust_cfg |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 342 | self.allow_missing = allow_missing |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 343 | self._ide = False |
Simon Glass | 93202d7 | 2023-02-21 12:40:28 -0700 | [diff] [blame] | 344 | self.no_lto = no_lto |
Simon Glass | bfb708a | 2023-02-21 12:40:29 -0700 | [diff] [blame] | 345 | self.reproducible_builds = reproducible_builds |
Simon Glass | ffd06d3 | 2023-07-19 17:48:52 -0600 | [diff] [blame] | 346 | self.force_build = force_build |
| 347 | self.force_build_failures = force_build_failures |
| 348 | self.force_reconfig = force_reconfig |
| 349 | self.in_tree = in_tree |
| 350 | self.force_config_on_failure = force_config_on_failure |
Simon Glass | 2b4806e | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 351 | |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 352 | if not self.squash_config_y: |
| 353 | self.config_filenames += EXTRA_CONFIG_FILENAMES |
Simon Glass | 7bf83a5 | 2021-10-19 21:43:24 -0600 | [diff] [blame] | 354 | self._terminated = False |
| 355 | self._restarting_config = False |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 356 | |
Daniel Schwierzeck | 2371d1b | 2018-01-26 16:31:05 +0100 | [diff] [blame] | 357 | self.warnings_as_errors = warnings_as_errors |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 358 | self.col = terminal.Color() |
| 359 | |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 360 | self._re_function = re.compile('(.*): In function.*') |
| 361 | self._re_files = re.compile('In file included from.*') |
| 362 | self._re_warning = re.compile('(.*):(\d*):(\d*): warning: .*') |
Simon Glass | 2d48333 | 2018-11-06 16:02:11 -0700 | [diff] [blame] | 363 | self._re_dtb_warning = re.compile('(.*): Warning .*') |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 364 | self._re_note = re.compile('(.*):(\d*):(\d*): note: this is the location of the previous.*') |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 365 | self._re_migration_warning = re.compile(r'^={21} WARNING ={22}\n.*\n=+\n', |
| 366 | re.MULTILINE | re.DOTALL) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 367 | |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 368 | self.thread_exceptions = [] |
| 369 | self.test_thread_exceptions = test_thread_exceptions |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 370 | if self.num_threads: |
| 371 | self._single_builder = None |
| 372 | self.queue = queue.Queue() |
| 373 | self.out_queue = queue.Queue() |
| 374 | for i in range(self.num_threads): |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 375 | t = builderthread.BuilderThread( |
| 376 | self, i, mrproper, per_board_out_dir, |
| 377 | test_exception=test_thread_exceptions) |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 378 | t.setDaemon(True) |
| 379 | t.start() |
| 380 | self.threads.append(t) |
| 381 | |
| 382 | t = builderthread.ResultThread(self) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 383 | t.setDaemon(True) |
| 384 | t.start() |
| 385 | self.threads.append(t) |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 386 | else: |
| 387 | self._single_builder = builderthread.BuilderThread( |
| 388 | self, -1, mrproper, per_board_out_dir) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 389 | |
| 390 | ignore_lines = ['(make.*Waiting for unfinished)', '(Segmentation fault)'] |
| 391 | self.re_make_err = re.compile('|'.join(ignore_lines)) |
| 392 | |
Simon Glass | 2f25664 | 2016-09-18 16:48:37 -0600 | [diff] [blame] | 393 | # Handle existing graceful with SIGINT / Ctrl-C |
| 394 | signal.signal(signal.SIGINT, self.signal_handler) |
| 395 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 396 | def __del__(self): |
| 397 | """Get rid of all threads created by the builder""" |
| 398 | for t in self.threads: |
| 399 | del t |
| 400 | |
Simon Glass | 2f25664 | 2016-09-18 16:48:37 -0600 | [diff] [blame] | 401 | def signal_handler(self, signal, frame): |
| 402 | sys.exit(1) |
| 403 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 404 | def set_display_options(self, show_errors=False, show_sizes=False, |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 405 | show_detail=False, show_bloat=False, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 406 | list_error_boards=False, show_config=False, |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 407 | show_environment=False, filter_dtb_warnings=False, |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 408 | filter_migration_warnings=False, ide=False): |
Simon Glass | b2ea7ab | 2014-08-09 15:33:02 -0600 | [diff] [blame] | 409 | """Setup display options for the builder. |
| 410 | |
Simon Glass | 174592b | 2020-04-09 15:08:52 -0600 | [diff] [blame] | 411 | Args: |
| 412 | show_errors: True to show summarised error/warning info |
| 413 | show_sizes: Show size deltas |
| 414 | show_detail: Show size delta detail for each board if show_sizes |
| 415 | show_bloat: Show detail for each function |
| 416 | list_error_boards: Show the boards which caused each error/warning |
| 417 | show_config: Show config deltas |
| 418 | show_environment: Show environment deltas |
| 419 | filter_dtb_warnings: Filter out any warnings from the device-tree |
| 420 | compiler |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 421 | filter_migration_warnings: Filter out any warnings about migrating |
| 422 | a board to driver model |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 423 | ide: Create output that can be parsed by an IDE. There is no '+' prefix on |
| 424 | error lines and output on stderr stays on stderr. |
Simon Glass | b2ea7ab | 2014-08-09 15:33:02 -0600 | [diff] [blame] | 425 | """ |
| 426 | self._show_errors = show_errors |
| 427 | self._show_sizes = show_sizes |
| 428 | self._show_detail = show_detail |
| 429 | self._show_bloat = show_bloat |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 430 | self._list_error_boards = list_error_boards |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 431 | self._show_config = show_config |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 432 | self._show_environment = show_environment |
Simon Glass | 174592b | 2020-04-09 15:08:52 -0600 | [diff] [blame] | 433 | self._filter_dtb_warnings = filter_dtb_warnings |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 434 | self._filter_migration_warnings = filter_migration_warnings |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 435 | self._ide = ide |
Simon Glass | b2ea7ab | 2014-08-09 15:33:02 -0600 | [diff] [blame] | 436 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 437 | def _add_timestamp(self): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 438 | """Add a new timestamp to the list and record the build period. |
| 439 | |
| 440 | The build period is the length of time taken to perform a single |
| 441 | build (one board, one commit). |
| 442 | """ |
| 443 | now = datetime.now() |
| 444 | self._timestamps.append(now) |
| 445 | count = len(self._timestamps) |
| 446 | delta = self._timestamps[-1] - self._timestamps[0] |
| 447 | seconds = delta.total_seconds() |
| 448 | |
| 449 | # If we have enough data, estimate build period (time taken for a |
| 450 | # single build) and therefore completion time. |
| 451 | if count > 1 and self._next_delay_update < now: |
| 452 | self._next_delay_update = now + timedelta(seconds=2) |
| 453 | if seconds > 0: |
| 454 | self._build_period = float(seconds) / count |
| 455 | todo = self.count - self.upto |
| 456 | self._complete_delay = timedelta(microseconds= |
| 457 | self._build_period * todo * 1000000) |
| 458 | # Round it |
| 459 | self._complete_delay -= timedelta( |
| 460 | microseconds=self._complete_delay.microseconds) |
| 461 | |
| 462 | if seconds > 60: |
| 463 | self._timestamps.popleft() |
| 464 | count -= 1 |
| 465 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 466 | def select_commit(self, commit, checkout=True): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 467 | """Checkout the selected commit for this build |
| 468 | """ |
| 469 | self.commit = commit |
| 470 | if checkout and self.checkout: |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 471 | gitutil.checkout(commit.hash) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 472 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 473 | def make(self, commit, brd, stage, cwd, *args, **kwargs): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 474 | """Run make |
| 475 | |
| 476 | Args: |
| 477 | commit: Commit object that is being built |
| 478 | brd: Board object that is being built |
Roger Meier | fd18a89 | 2014-08-20 22:10:29 +0200 | [diff] [blame] | 479 | stage: Stage that we are at (mrproper, config, build) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 480 | cwd: Directory where make should be run |
| 481 | args: Arguments to pass to make |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 482 | kwargs: Arguments to pass to command.run_pipe() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 483 | """ |
Simon Glass | 7bf83a5 | 2021-10-19 21:43:24 -0600 | [diff] [blame] | 484 | |
| 485 | def check_output(stream, data): |
| 486 | if b'Restart config' in data: |
| 487 | self._restarting_config = True |
| 488 | |
| 489 | # If we see 'Restart config' following by multiple errors |
| 490 | if self._restarting_config: |
| 491 | m = RE_NO_DEFAULT.findall(data) |
| 492 | |
| 493 | # Number of occurences of each Kconfig item |
| 494 | multiple = [m.count(val) for val in set(m)] |
| 495 | |
| 496 | # If any of them occur more than once, we have a loop |
| 497 | if [val for val in multiple if val > 1]: |
| 498 | self._terminated = True |
| 499 | return True |
| 500 | return False |
| 501 | |
| 502 | self._restarting_config = False |
| 503 | self._terminated = False |
Masahiro Yamada | 9979692 | 2014-07-22 11:19:09 +0900 | [diff] [blame] | 504 | cmd = [self.gnu_make] + list(args) |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 505 | result = command.run_pipe([cmd], capture=True, capture_stderr=True, |
Simon Glass | 7bf83a5 | 2021-10-19 21:43:24 -0600 | [diff] [blame] | 506 | cwd=cwd, raise_on_error=False, infile='/dev/null', |
| 507 | output_func=check_output, **kwargs) |
| 508 | |
| 509 | if self._terminated: |
| 510 | # Try to be helpful |
| 511 | result.stderr += '(** did you define an int/hex Kconfig with no default? **)' |
| 512 | |
Simon Glass | 40f11fc | 2015-02-05 22:06:12 -0700 | [diff] [blame] | 513 | if self.verbose_build: |
| 514 | result.stdout = '%s\n' % (' '.join(cmd)) + result.stdout |
| 515 | result.combined = '%s\n' % (' '.join(cmd)) + result.combined |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 516 | return result |
| 517 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 518 | def process_result(self, result): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 519 | """Process the result of a build, showing progress information |
| 520 | |
| 521 | Args: |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 522 | result: A CommandResult object, which indicates the result for |
| 523 | a single build |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 524 | """ |
| 525 | col = terminal.Color() |
| 526 | if result: |
| 527 | target = result.brd.target |
| 528 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 529 | self.upto += 1 |
| 530 | if result.return_code != 0: |
| 531 | self.fail += 1 |
| 532 | elif result.stderr: |
| 533 | self.warned += 1 |
| 534 | if result.already_done: |
| 535 | self.already_done += 1 |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 536 | if self._verbose: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 537 | terminal.print_clear() |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 538 | boards_selected = {target : result.brd} |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 539 | self.reset_result_summary(boards_selected) |
| 540 | self.produce_result_summary(result.commit_upto, self.commits, |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 541 | boards_selected) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 542 | else: |
| 543 | target = '(starting)' |
| 544 | |
| 545 | # Display separate counts for ok, warned and fail |
| 546 | ok = self.upto - self.warned - self.fail |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 547 | line = '\r' + self.col.build(self.col.GREEN, '%5d' % ok) |
| 548 | line += self.col.build(self.col.YELLOW, '%5d' % self.warned) |
| 549 | line += self.col.build(self.col.RED, '%5d' % self.fail) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 550 | |
Simon Glass | 6eb76ca | 2020-04-09 15:08:45 -0600 | [diff] [blame] | 551 | line += ' /%-5d ' % self.count |
| 552 | remaining = self.count - self.upto |
| 553 | if remaining: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 554 | line += self.col.build(self.col.MAGENTA, ' -%-5d ' % remaining) |
Simon Glass | 6eb76ca | 2020-04-09 15:08:45 -0600 | [diff] [blame] | 555 | else: |
| 556 | line += ' ' * 8 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 557 | |
| 558 | # Add our current completion time estimate |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 559 | self._add_timestamp() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 560 | if self._complete_delay: |
Simon Glass | 6eb76ca | 2020-04-09 15:08:45 -0600 | [diff] [blame] | 561 | line += '%s : ' % self._complete_delay |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 562 | |
Simon Glass | 6eb76ca | 2020-04-09 15:08:45 -0600 | [diff] [blame] | 563 | line += target |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 564 | if not self._ide: |
| 565 | terminal.print_clear() |
| 566 | tprint(line, newline=False, limit_to_line=True) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 567 | |
Simon Glass | 4a7419b | 2023-07-19 17:49:10 -0600 | [diff] [blame] | 568 | def get_output_dir(self, commit_upto): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 569 | """Get the name of the output directory for a commit number |
| 570 | |
| 571 | The output directory is typically .../<branch>/<commit>. |
| 572 | |
| 573 | Args: |
| 574 | commit_upto: Commit number to use (0..self.count-1) |
| 575 | """ |
Simon Glass | 60b285f | 2020-04-17 17:51:34 -0600 | [diff] [blame] | 576 | if self.work_in_output: |
| 577 | return self._working_dir |
| 578 | |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 579 | commit_dir = None |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 580 | if self.commits: |
| 581 | commit = self.commits[commit_upto] |
| 582 | subject = commit.subject.translate(trans_valid_chars) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 583 | # See _get_output_space_removals() which parses this name |
Ovidiu Panait | 7664b03 | 2020-05-15 09:30:12 +0300 | [diff] [blame] | 584 | commit_dir = ('%02d_g%s_%s' % (commit_upto + 1, |
| 585 | commit.hash, subject[:20])) |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 586 | elif not self.no_subdirs: |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 587 | commit_dir = 'current' |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 588 | if not commit_dir: |
| 589 | return self.base_dir |
| 590 | return os.path.join(self.base_dir, commit_dir) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 591 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 592 | def get_build_dir(self, commit_upto, target): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 593 | """Get the name of the build directory for a commit number |
| 594 | |
| 595 | The build directory is typically .../<branch>/<commit>/<target>. |
| 596 | |
| 597 | Args: |
| 598 | commit_upto: Commit number to use (0..self.count-1) |
| 599 | target: Target name |
| 600 | """ |
Simon Glass | 4a7419b | 2023-07-19 17:49:10 -0600 | [diff] [blame] | 601 | output_dir = self.get_output_dir(commit_upto) |
Simon Glass | 60b285f | 2020-04-17 17:51:34 -0600 | [diff] [blame] | 602 | if self.work_in_output: |
| 603 | return output_dir |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 604 | return os.path.join(output_dir, target) |
| 605 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 606 | def get_done_file(self, commit_upto, target): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 607 | """Get the name of the done file for a commit number |
| 608 | |
| 609 | Args: |
| 610 | commit_upto: Commit number to use (0..self.count-1) |
| 611 | target: Target name |
| 612 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 613 | return os.path.join(self.get_build_dir(commit_upto, target), 'done') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 614 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 615 | def get_sizes_file(self, commit_upto, target): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 616 | """Get the name of the sizes file for a commit number |
| 617 | |
| 618 | Args: |
| 619 | commit_upto: Commit number to use (0..self.count-1) |
| 620 | target: Target name |
| 621 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 622 | return os.path.join(self.get_build_dir(commit_upto, target), 'sizes') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 623 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 624 | def get_func_sizes_file(self, commit_upto, target, elf_fname): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 625 | """Get the name of the funcsizes file for a commit number and ELF file |
| 626 | |
| 627 | Args: |
| 628 | commit_upto: Commit number to use (0..self.count-1) |
| 629 | target: Target name |
| 630 | elf_fname: Filename of elf image |
| 631 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 632 | return os.path.join(self.get_build_dir(commit_upto, target), |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 633 | '%s.sizes' % elf_fname.replace('/', '-')) |
| 634 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 635 | def get_objdump_file(self, commit_upto, target, elf_fname): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 636 | """Get the name of the objdump file for a commit number and ELF file |
| 637 | |
| 638 | Args: |
| 639 | commit_upto: Commit number to use (0..self.count-1) |
| 640 | target: Target name |
| 641 | elf_fname: Filename of elf image |
| 642 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 643 | return os.path.join(self.get_build_dir(commit_upto, target), |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 644 | '%s.objdump' % elf_fname.replace('/', '-')) |
| 645 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 646 | def get_err_file(self, commit_upto, target): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 647 | """Get the name of the err file for a commit number |
| 648 | |
| 649 | Args: |
| 650 | commit_upto: Commit number to use (0..self.count-1) |
| 651 | target: Target name |
| 652 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 653 | output_dir = self.get_build_dir(commit_upto, target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 654 | return os.path.join(output_dir, 'err') |
| 655 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 656 | def filter_errors(self, lines): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 657 | """Filter out errors in which we have no interest |
| 658 | |
| 659 | We should probably use map(). |
| 660 | |
| 661 | Args: |
| 662 | lines: List of error lines, each a string |
| 663 | Returns: |
| 664 | New list with only interesting lines included |
| 665 | """ |
| 666 | out_lines = [] |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 667 | if self._filter_migration_warnings: |
| 668 | text = '\n'.join(lines) |
| 669 | text = self._re_migration_warning.sub('', text) |
| 670 | lines = text.splitlines() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 671 | for line in lines: |
Simon Glass | 174592b | 2020-04-09 15:08:52 -0600 | [diff] [blame] | 672 | if self.re_make_err.search(line): |
| 673 | continue |
| 674 | if self._filter_dtb_warnings and self._re_dtb_warning.search(line): |
| 675 | continue |
| 676 | out_lines.append(line) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 677 | return out_lines |
| 678 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 679 | def read_func_sizes(self, fname, fd): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 680 | """Read function sizes from the output of 'nm' |
| 681 | |
| 682 | Args: |
| 683 | fd: File containing data to read |
| 684 | fname: Filename we are reading from (just for errors) |
| 685 | |
| 686 | Returns: |
| 687 | Dictionary containing size of each function in bytes, indexed by |
| 688 | function name. |
| 689 | """ |
| 690 | sym = {} |
| 691 | for line in fd.readlines(): |
Simon Glass | f2e6775 | 2022-07-11 19:04:11 -0600 | [diff] [blame] | 692 | line = line.strip() |
| 693 | parts = line.split() |
| 694 | if line and len(parts) == 3: |
| 695 | size, type, name = line.split() |
| 696 | if type in 'tTdDbB': |
| 697 | # function names begin with '.' on 64-bit powerpc |
| 698 | if '.' in name[1:]: |
| 699 | name = 'static.' + name.split('.')[0] |
| 700 | sym[name] = sym.get(name, 0) + int(size, 16) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 701 | return sym |
| 702 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 703 | def _process_config(self, fname): |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 704 | """Read in a .config, autoconf.mk or autoconf.h file |
| 705 | |
| 706 | This function handles all config file types. It ignores comments and |
| 707 | any #defines which don't start with CONFIG_. |
| 708 | |
| 709 | Args: |
| 710 | fname: Filename to read |
| 711 | |
| 712 | Returns: |
| 713 | Dictionary: |
| 714 | key: Config name (e.g. CONFIG_DM) |
| 715 | value: Config value (e.g. 1) |
| 716 | """ |
| 717 | config = {} |
| 718 | if os.path.exists(fname): |
| 719 | with open(fname) as fd: |
| 720 | for line in fd: |
| 721 | line = line.strip() |
| 722 | if line.startswith('#define'): |
| 723 | values = line[8:].split(' ', 1) |
| 724 | if len(values) > 1: |
| 725 | key, value = values |
| 726 | else: |
| 727 | key = values[0] |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 728 | value = '1' if self.squash_config_y else '' |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 729 | if not key.startswith('CONFIG_'): |
| 730 | continue |
| 731 | elif not line or line[0] in ['#', '*', '/']: |
| 732 | continue |
| 733 | else: |
| 734 | key, value = line.split('=', 1) |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 735 | if self.squash_config_y and value == 'y': |
| 736 | value = '1' |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 737 | config[key] = value |
| 738 | return config |
| 739 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 740 | def _process_environment(self, fname): |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 741 | """Read in a uboot.env file |
| 742 | |
| 743 | This function reads in environment variables from a file. |
| 744 | |
| 745 | Args: |
| 746 | fname: Filename to read |
| 747 | |
| 748 | Returns: |
| 749 | Dictionary: |
| 750 | key: environment variable (e.g. bootlimit) |
| 751 | value: value of environment variable (e.g. 1) |
| 752 | """ |
| 753 | environment = {} |
| 754 | if os.path.exists(fname): |
| 755 | with open(fname) as fd: |
| 756 | for line in fd.read().split('\0'): |
| 757 | try: |
| 758 | key, value = line.split('=', 1) |
| 759 | environment[key] = value |
| 760 | except ValueError: |
| 761 | # ignore lines we can't parse |
| 762 | pass |
| 763 | return environment |
| 764 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 765 | def get_build_outcome(self, commit_upto, target, read_func_sizes, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 766 | read_config, read_environment): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 767 | """Work out the outcome of a build. |
| 768 | |
| 769 | Args: |
| 770 | commit_upto: Commit number to check (0..n-1) |
| 771 | target: Target board to check |
| 772 | read_func_sizes: True to read function size information |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 773 | read_config: True to read .config and autoconf.h files |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 774 | read_environment: True to read uboot.env files |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 775 | |
| 776 | Returns: |
| 777 | Outcome object |
| 778 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 779 | done_file = self.get_done_file(commit_upto, target) |
| 780 | sizes_file = self.get_sizes_file(commit_upto, target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 781 | sizes = {} |
| 782 | func_sizes = {} |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 783 | config = {} |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 784 | environment = {} |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 785 | if os.path.exists(done_file): |
| 786 | with open(done_file, 'r') as fd: |
Simon Glass | 347ea0b | 2019-04-26 19:02:23 -0600 | [diff] [blame] | 787 | try: |
| 788 | return_code = int(fd.readline()) |
| 789 | except ValueError: |
| 790 | # The file may be empty due to running out of disk space. |
| 791 | # Try a rebuild |
| 792 | return_code = 1 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 793 | err_lines = [] |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 794 | err_file = self.get_err_file(commit_upto, target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 795 | if os.path.exists(err_file): |
| 796 | with open(err_file, 'r') as fd: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 797 | err_lines = self.filter_errors(fd.readlines()) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 798 | |
| 799 | # Decide whether the build was ok, failed or created warnings |
| 800 | if return_code: |
| 801 | rc = OUTCOME_ERROR |
| 802 | elif len(err_lines): |
| 803 | rc = OUTCOME_WARNING |
| 804 | else: |
| 805 | rc = OUTCOME_OK |
| 806 | |
| 807 | # Convert size information to our simple format |
| 808 | if os.path.exists(sizes_file): |
| 809 | with open(sizes_file, 'r') as fd: |
| 810 | for line in fd.readlines(): |
| 811 | values = line.split() |
| 812 | rodata = 0 |
| 813 | if len(values) > 6: |
| 814 | rodata = int(values[6], 16) |
| 815 | size_dict = { |
| 816 | 'all' : int(values[0]) + int(values[1]) + |
| 817 | int(values[2]), |
| 818 | 'text' : int(values[0]) - rodata, |
| 819 | 'data' : int(values[1]), |
| 820 | 'bss' : int(values[2]), |
| 821 | 'rodata' : rodata, |
| 822 | } |
| 823 | sizes[values[5]] = size_dict |
| 824 | |
| 825 | if read_func_sizes: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 826 | pattern = self.get_func_sizes_file(commit_upto, target, '*') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 827 | for fname in glob.glob(pattern): |
| 828 | with open(fname, 'r') as fd: |
| 829 | dict_name = os.path.basename(fname).replace('.sizes', |
| 830 | '') |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 831 | func_sizes[dict_name] = self.read_func_sizes(fname, fd) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 832 | |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 833 | if read_config: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 834 | output_dir = self.get_build_dir(commit_upto, target) |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 835 | for name in self.config_filenames: |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 836 | fname = os.path.join(output_dir, name) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 837 | config[name] = self._process_config(fname) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 838 | |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 839 | if read_environment: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 840 | output_dir = self.get_build_dir(commit_upto, target) |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 841 | fname = os.path.join(output_dir, 'uboot.env') |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 842 | environment = self._process_environment(fname) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 843 | |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 844 | return Builder.Outcome(rc, err_lines, sizes, func_sizes, config, |
| 845 | environment) |
| 846 | |
| 847 | return Builder.Outcome(OUTCOME_UNKNOWN, [], {}, {}, {}, {}) |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 848 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 849 | def get_result_summary(self, boards_selected, commit_upto, read_func_sizes, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 850 | read_config, read_environment): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 851 | """Calculate a summary of the results of building a commit. |
| 852 | |
| 853 | Args: |
| 854 | board_selected: Dict containing boards to summarise |
| 855 | commit_upto: Commit number to summarize (0..self.count-1) |
| 856 | read_func_sizes: True to read function size information |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 857 | read_config: True to read .config and autoconf.h files |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 858 | read_environment: True to read uboot.env files |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 859 | |
| 860 | Returns: |
| 861 | Tuple: |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 862 | Dict containing boards which built this commit: |
| 863 | key: board.target |
| 864 | value: Builder.Outcome object |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 865 | List containing a summary of error lines |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 866 | Dict keyed by error line, containing a list of the Board |
| 867 | objects with that error |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 868 | List containing a summary of warning lines |
| 869 | Dict keyed by error line, containing a list of the Board |
| 870 | objects with that warning |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 871 | Dictionary keyed by board.target. Each value is a dictionary: |
| 872 | key: filename - e.g. '.config' |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 873 | value is itself a dictionary: |
| 874 | key: config name |
| 875 | value: config value |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 876 | Dictionary keyed by board.target. Each value is a dictionary: |
| 877 | key: environment variable |
| 878 | value: value of environment variable |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 879 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 880 | def add_line(lines_summary, lines_boards, line, board): |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 881 | line = line.rstrip() |
| 882 | if line in lines_boards: |
| 883 | lines_boards[line].append(board) |
| 884 | else: |
| 885 | lines_boards[line] = [board] |
| 886 | lines_summary.append(line) |
| 887 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 888 | board_dict = {} |
| 889 | err_lines_summary = [] |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 890 | err_lines_boards = {} |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 891 | warn_lines_summary = [] |
| 892 | warn_lines_boards = {} |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 893 | config = {} |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 894 | environment = {} |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 895 | |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 896 | for brd in boards_selected.values(): |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 897 | outcome = self.get_build_outcome(commit_upto, brd.target, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 898 | read_func_sizes, read_config, |
| 899 | read_environment) |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 900 | board_dict[brd.target] = outcome |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 901 | last_func = None |
| 902 | last_was_warning = False |
| 903 | for line in outcome.err_lines: |
| 904 | if line: |
| 905 | if (self._re_function.match(line) or |
| 906 | self._re_files.match(line)): |
| 907 | last_func = line |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 908 | else: |
Simon Glass | 2d48333 | 2018-11-06 16:02:11 -0700 | [diff] [blame] | 909 | is_warning = (self._re_warning.match(line) or |
| 910 | self._re_dtb_warning.match(line)) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 911 | is_note = self._re_note.match(line) |
| 912 | if is_warning or (last_was_warning and is_note): |
| 913 | if last_func: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 914 | add_line(warn_lines_summary, warn_lines_boards, |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 915 | last_func, brd) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 916 | add_line(warn_lines_summary, warn_lines_boards, |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 917 | line, brd) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 918 | else: |
| 919 | if last_func: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 920 | add_line(err_lines_summary, err_lines_boards, |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 921 | last_func, brd) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 922 | add_line(err_lines_summary, err_lines_boards, |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 923 | line, brd) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 924 | last_was_warning = is_warning |
| 925 | last_func = None |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 926 | tconfig = Config(self.config_filenames, brd.target) |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 927 | for fname in self.config_filenames: |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 928 | if outcome.config: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 929 | for key, value in outcome.config[fname].items(): |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 930 | tconfig.add(fname, key, value) |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 931 | config[brd.target] = tconfig |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 932 | |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 933 | tenvironment = Environment(brd.target) |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 934 | if outcome.environment: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 935 | for key, value in outcome.environment.items(): |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 936 | tenvironment.add(key, value) |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 937 | environment[brd.target] = tenvironment |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 938 | |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 939 | return (board_dict, err_lines_summary, err_lines_boards, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 940 | warn_lines_summary, warn_lines_boards, config, environment) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 941 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 942 | def add_outcome(self, board_dict, arch_list, changes, char, color): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 943 | """Add an output to our list of outcomes for each architecture |
| 944 | |
| 945 | This simple function adds failing boards (changes) to the |
| 946 | relevant architecture string, so we can print the results out |
| 947 | sorted by architecture. |
| 948 | |
| 949 | Args: |
| 950 | board_dict: Dict containing all boards |
| 951 | arch_list: Dict keyed by arch name. Value is a string containing |
| 952 | a list of board names which failed for that arch. |
| 953 | changes: List of boards to add to arch_list |
| 954 | color: terminal.Colour object |
| 955 | """ |
| 956 | done_arch = {} |
| 957 | for target in changes: |
| 958 | if target in board_dict: |
| 959 | arch = board_dict[target].arch |
| 960 | else: |
| 961 | arch = 'unknown' |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 962 | str = self.col.build(color, ' ' + target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 963 | if not arch in done_arch: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 964 | str = ' %s %s' % (self.col.build(color, char), str) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 965 | done_arch[arch] = True |
| 966 | if not arch in arch_list: |
| 967 | arch_list[arch] = str |
| 968 | else: |
| 969 | arch_list[arch] += str |
| 970 | |
| 971 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 972 | def colour_num(self, num): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 973 | color = self.col.RED if num > 0 else self.col.GREEN |
| 974 | if num == 0: |
| 975 | return '0' |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 976 | return self.col.build(color, str(num)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 977 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 978 | def reset_result_summary(self, board_selected): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 979 | """Reset the results summary ready for use. |
| 980 | |
| 981 | Set up the base board list to be all those selected, and set the |
| 982 | error lines to empty. |
| 983 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 984 | Following this, calls to print_result_summary() will use this |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 985 | information to work out what has changed. |
| 986 | |
| 987 | Args: |
| 988 | board_selected: Dict containing boards to summarise, keyed by |
| 989 | board.target |
| 990 | """ |
| 991 | self._base_board_dict = {} |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 992 | for brd in board_selected: |
| 993 | self._base_board_dict[brd] = Builder.Outcome(0, [], [], {}, {}, {}) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 994 | self._base_err_lines = [] |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 995 | self._base_warn_lines = [] |
| 996 | self._base_err_line_boards = {} |
| 997 | self._base_warn_line_boards = {} |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 998 | self._base_config = None |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 999 | self._base_environment = None |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1000 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1001 | def print_func_size_detail(self, fname, old, new): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1002 | grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 |
| 1003 | delta, common = [], {} |
| 1004 | |
| 1005 | for a in old: |
| 1006 | if a in new: |
| 1007 | common[a] = 1 |
| 1008 | |
| 1009 | for name in old: |
| 1010 | if name not in common: |
| 1011 | remove += 1 |
| 1012 | down += old[name] |
| 1013 | delta.append([-old[name], name]) |
| 1014 | |
| 1015 | for name in new: |
| 1016 | if name not in common: |
| 1017 | add += 1 |
| 1018 | up += new[name] |
| 1019 | delta.append([new[name], name]) |
| 1020 | |
| 1021 | for name in common: |
| 1022 | diff = new.get(name, 0) - old.get(name, 0) |
| 1023 | if diff > 0: |
| 1024 | grow, up = grow + 1, up + diff |
| 1025 | elif diff < 0: |
| 1026 | shrink, down = shrink + 1, down - diff |
| 1027 | delta.append([diff, name]) |
| 1028 | |
| 1029 | delta.sort() |
| 1030 | delta.reverse() |
| 1031 | |
| 1032 | args = [add, -remove, grow, -shrink, up, -down, up - down] |
Tom Rini | d5686a6 | 2017-05-22 13:48:52 -0400 | [diff] [blame] | 1033 | if max(args) == 0 and min(args) == 0: |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1034 | return |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1035 | args = [self.colour_num(x) for x in args] |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1036 | indent = ' ' * 15 |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1037 | tprint('%s%s: add: %s/%s, grow: %s/%s bytes: %s/%s (%s)' % |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 1038 | tuple([indent, self.col.build(self.col.YELLOW, fname)] + args)) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1039 | tprint('%s %-38s %7s %7s %+7s' % (indent, 'function', 'old', 'new', |
Simon Glass | 4653a88 | 2014-09-05 19:00:07 -0600 | [diff] [blame] | 1040 | 'delta')) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1041 | for diff, name in delta: |
| 1042 | if diff: |
| 1043 | color = self.col.RED if diff > 0 else self.col.GREEN |
| 1044 | msg = '%s %-38s %7s %7s %+7d' % (indent, name, |
| 1045 | old.get(name, '-'), new.get(name,'-'), diff) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1046 | tprint(msg, colour=color) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1047 | |
| 1048 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1049 | def print_size_detail(self, target_list, show_bloat): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1050 | """Show details size information for each board |
| 1051 | |
| 1052 | Args: |
| 1053 | target_list: List of targets, each a dict containing: |
| 1054 | 'target': Target name |
| 1055 | 'total_diff': Total difference in bytes across all areas |
| 1056 | <part_name>: Difference for that part |
| 1057 | show_bloat: Show detail for each function |
| 1058 | """ |
| 1059 | targets_by_diff = sorted(target_list, reverse=True, |
| 1060 | key=lambda x: x['_total_diff']) |
| 1061 | for result in targets_by_diff: |
| 1062 | printed_target = False |
| 1063 | for name in sorted(result): |
| 1064 | diff = result[name] |
| 1065 | if name.startswith('_'): |
| 1066 | continue |
| 1067 | if diff != 0: |
| 1068 | color = self.col.RED if diff > 0 else self.col.GREEN |
| 1069 | msg = ' %s %+d' % (name, diff) |
| 1070 | if not printed_target: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1071 | tprint('%10s %-15s:' % ('', result['_target']), |
Simon Glass | 4653a88 | 2014-09-05 19:00:07 -0600 | [diff] [blame] | 1072 | newline=False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1073 | printed_target = True |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1074 | tprint(msg, colour=color, newline=False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1075 | if printed_target: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1076 | tprint() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1077 | if show_bloat: |
| 1078 | target = result['_target'] |
| 1079 | outcome = result['_outcome'] |
| 1080 | base_outcome = self._base_board_dict[target] |
| 1081 | for fname in outcome.func_sizes: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1082 | self.print_func_size_detail(fname, |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1083 | base_outcome.func_sizes[fname], |
| 1084 | outcome.func_sizes[fname]) |
| 1085 | |
| 1086 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1087 | def print_size_summary(self, board_selected, board_dict, show_detail, |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1088 | show_bloat): |
| 1089 | """Print a summary of image sizes broken down by section. |
| 1090 | |
| 1091 | The summary takes the form of one line per architecture. The |
| 1092 | line contains deltas for each of the sections (+ means the section |
Flavio Suligoi | 9de5c39 | 2020-01-29 09:56:05 +0100 | [diff] [blame] | 1093 | got bigger, - means smaller). The numbers are the average number |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1094 | of bytes that a board in this section increased by. |
| 1095 | |
| 1096 | For example: |
| 1097 | powerpc: (622 boards) text -0.0 |
| 1098 | arm: (285 boards) text -0.0 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1099 | |
| 1100 | Args: |
| 1101 | board_selected: Dict containing boards to summarise, keyed by |
| 1102 | board.target |
| 1103 | board_dict: Dict containing boards for which we built this |
| 1104 | commit, keyed by board.target. The value is an Outcome object. |
Simon Glass | f9c094b | 2020-03-18 09:42:43 -0600 | [diff] [blame] | 1105 | show_detail: Show size delta detail for each board |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1106 | show_bloat: Show detail for each function |
| 1107 | """ |
| 1108 | arch_list = {} |
| 1109 | arch_count = {} |
| 1110 | |
| 1111 | # Calculate changes in size for different image parts |
| 1112 | # The previous sizes are in Board.sizes, for each board |
| 1113 | for target in board_dict: |
| 1114 | if target not in board_selected: |
| 1115 | continue |
| 1116 | base_sizes = self._base_board_dict[target].sizes |
| 1117 | outcome = board_dict[target] |
| 1118 | sizes = outcome.sizes |
| 1119 | |
| 1120 | # Loop through the list of images, creating a dict of size |
| 1121 | # changes for each image/part. We end up with something like |
| 1122 | # {'target' : 'snapper9g45, 'data' : 5, 'u-boot-spl:text' : -4} |
| 1123 | # which means that U-Boot data increased by 5 bytes and SPL |
| 1124 | # text decreased by 4. |
| 1125 | err = {'_target' : target} |
| 1126 | for image in sizes: |
| 1127 | if image in base_sizes: |
| 1128 | base_image = base_sizes[image] |
| 1129 | # Loop through the text, data, bss parts |
| 1130 | for part in sorted(sizes[image]): |
| 1131 | diff = sizes[image][part] - base_image[part] |
| 1132 | col = None |
| 1133 | if diff: |
| 1134 | if image == 'u-boot': |
| 1135 | name = part |
| 1136 | else: |
| 1137 | name = image + ':' + part |
| 1138 | err[name] = diff |
| 1139 | arch = board_selected[target].arch |
| 1140 | if not arch in arch_count: |
| 1141 | arch_count[arch] = 1 |
| 1142 | else: |
| 1143 | arch_count[arch] += 1 |
| 1144 | if not sizes: |
| 1145 | pass # Only add to our list when we have some stats |
| 1146 | elif not arch in arch_list: |
| 1147 | arch_list[arch] = [err] |
| 1148 | else: |
| 1149 | arch_list[arch].append(err) |
| 1150 | |
| 1151 | # We now have a list of image size changes sorted by arch |
| 1152 | # Print out a summary of these |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1153 | for arch, target_list in arch_list.items(): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1154 | # Get total difference for each type |
| 1155 | totals = {} |
| 1156 | for result in target_list: |
| 1157 | total = 0 |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1158 | for name, diff in result.items(): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1159 | if name.startswith('_'): |
| 1160 | continue |
| 1161 | total += diff |
| 1162 | if name in totals: |
| 1163 | totals[name] += diff |
| 1164 | else: |
| 1165 | totals[name] = diff |
| 1166 | result['_total_diff'] = total |
| 1167 | result['_outcome'] = board_dict[result['_target']] |
| 1168 | |
| 1169 | count = len(target_list) |
| 1170 | printed_arch = False |
| 1171 | for name in sorted(totals): |
| 1172 | diff = totals[name] |
| 1173 | if diff: |
| 1174 | # Display the average difference in this name for this |
| 1175 | # architecture |
| 1176 | avg_diff = float(diff) / count |
| 1177 | color = self.col.RED if avg_diff > 0 else self.col.GREEN |
| 1178 | msg = ' %s %+1.1f' % (name, avg_diff) |
| 1179 | if not printed_arch: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1180 | tprint('%10s: (for %d/%d boards)' % (arch, count, |
Simon Glass | 4653a88 | 2014-09-05 19:00:07 -0600 | [diff] [blame] | 1181 | arch_count[arch]), newline=False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1182 | printed_arch = True |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1183 | tprint(msg, colour=color, newline=False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1184 | |
| 1185 | if printed_arch: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1186 | tprint() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1187 | if show_detail: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1188 | self.print_size_detail(target_list, show_bloat) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1189 | |
| 1190 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1191 | def print_result_summary(self, board_selected, board_dict, err_lines, |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1192 | err_line_boards, warn_lines, warn_line_boards, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1193 | config, environment, show_sizes, show_detail, |
| 1194 | show_bloat, show_config, show_environment): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1195 | """Compare results with the base results and display delta. |
| 1196 | |
| 1197 | Only boards mentioned in board_selected will be considered. This |
| 1198 | function is intended to be called repeatedly with the results of |
| 1199 | each commit. It therefore shows a 'diff' between what it saw in |
| 1200 | the last call and what it sees now. |
| 1201 | |
| 1202 | Args: |
| 1203 | board_selected: Dict containing boards to summarise, keyed by |
| 1204 | board.target |
| 1205 | board_dict: Dict containing boards for which we built this |
| 1206 | commit, keyed by board.target. The value is an Outcome object. |
| 1207 | err_lines: A list of errors for this commit, or [] if there is |
| 1208 | none, or we don't want to print errors |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1209 | err_line_boards: Dict keyed by error line, containing a list of |
| 1210 | the Board objects with that error |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1211 | warn_lines: A list of warnings for this commit, or [] if there is |
| 1212 | none, or we don't want to print errors |
| 1213 | warn_line_boards: Dict keyed by warning line, containing a list of |
| 1214 | the Board objects with that warning |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1215 | config: Dictionary keyed by filename - e.g. '.config'. Each |
| 1216 | value is itself a dictionary: |
| 1217 | key: config name |
| 1218 | value: config value |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1219 | environment: Dictionary keyed by environment variable, Each |
| 1220 | value is the value of environment variable. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1221 | show_sizes: Show image size deltas |
Simon Glass | f9c094b | 2020-03-18 09:42:43 -0600 | [diff] [blame] | 1222 | show_detail: Show size delta detail for each board if show_sizes |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1223 | show_bloat: Show detail for each function |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1224 | show_config: Show config changes |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1225 | show_environment: Show environment changes |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1226 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1227 | def _board_list(line, line_boards): |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1228 | """Helper function to get a line of boards containing a line |
| 1229 | |
| 1230 | Args: |
| 1231 | line: Error line to search for |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1232 | line_boards: boards to search, each a Board |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1233 | Return: |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1234 | List of boards with that error line, or [] if the user has not |
| 1235 | requested such a list |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1236 | """ |
Simon Glass | cc2c0d1 | 2022-07-11 19:04:00 -0600 | [diff] [blame] | 1237 | brds = [] |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1238 | board_set = set() |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1239 | if self._list_error_boards: |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 1240 | for brd in line_boards[line]: |
| 1241 | if not brd in board_set: |
Simon Glass | cc2c0d1 | 2022-07-11 19:04:00 -0600 | [diff] [blame] | 1242 | brds.append(brd) |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 1243 | board_set.add(brd) |
Simon Glass | cc2c0d1 | 2022-07-11 19:04:00 -0600 | [diff] [blame] | 1244 | return brds |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1245 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1246 | def _calc_error_delta(base_lines, base_line_boards, lines, line_boards, |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1247 | char): |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1248 | """Calculate the required output based on changes in errors |
| 1249 | |
| 1250 | Args: |
| 1251 | base_lines: List of errors/warnings for previous commit |
| 1252 | base_line_boards: Dict keyed by error line, containing a list |
| 1253 | of the Board objects with that error in the previous commit |
| 1254 | lines: List of errors/warning for this commit, each a str |
| 1255 | line_boards: Dict keyed by error line, containing a list |
| 1256 | of the Board objects with that error in this commit |
| 1257 | char: Character representing error ('') or warning ('w'). The |
| 1258 | broken ('+') or fixed ('-') characters are added in this |
| 1259 | function |
| 1260 | |
| 1261 | Returns: |
| 1262 | Tuple |
| 1263 | List of ErrLine objects for 'better' lines |
| 1264 | List of ErrLine objects for 'worse' lines |
| 1265 | """ |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1266 | better_lines = [] |
| 1267 | worse_lines = [] |
| 1268 | for line in lines: |
| 1269 | if line not in base_lines: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1270 | errline = ErrLine(char + '+', _board_list(line, line_boards), |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1271 | line) |
| 1272 | worse_lines.append(errline) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1273 | for line in base_lines: |
| 1274 | if line not in lines: |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1275 | errline = ErrLine(char + '-', |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1276 | _board_list(line, base_line_boards), line) |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1277 | better_lines.append(errline) |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1278 | return better_lines, worse_lines |
| 1279 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1280 | def _calc_config(delta, name, config): |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1281 | """Calculate configuration changes |
| 1282 | |
| 1283 | Args: |
| 1284 | delta: Type of the delta, e.g. '+' |
| 1285 | name: name of the file which changed (e.g. .config) |
| 1286 | config: configuration change dictionary |
| 1287 | key: config name |
| 1288 | value: config value |
| 1289 | Returns: |
| 1290 | String containing the configuration changes which can be |
| 1291 | printed |
| 1292 | """ |
| 1293 | out = '' |
| 1294 | for key in sorted(config.keys()): |
| 1295 | out += '%s=%s ' % (key, config[key]) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1296 | return '%s %s: %s' % (delta, name, out) |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1297 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1298 | def _add_config(lines, name, config_plus, config_minus, config_change): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1299 | """Add changes in configuration to a list |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1300 | |
| 1301 | Args: |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1302 | lines: list to add to |
| 1303 | name: config file name |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1304 | config_plus: configurations added, dictionary |
| 1305 | key: config name |
| 1306 | value: config value |
| 1307 | config_minus: configurations removed, dictionary |
| 1308 | key: config name |
| 1309 | value: config value |
| 1310 | config_change: configurations changed, dictionary |
| 1311 | key: config name |
| 1312 | value: config value |
| 1313 | """ |
| 1314 | if config_plus: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1315 | lines.append(_calc_config('+', name, config_plus)) |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1316 | if config_minus: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1317 | lines.append(_calc_config('-', name, config_minus)) |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1318 | if config_change: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1319 | lines.append(_calc_config('c', name, config_change)) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1320 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1321 | def _output_config_info(lines): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1322 | for line in lines: |
| 1323 | if not line: |
| 1324 | continue |
| 1325 | if line[0] == '+': |
| 1326 | col = self.col.GREEN |
| 1327 | elif line[0] == '-': |
| 1328 | col = self.col.RED |
| 1329 | elif line[0] == 'c': |
| 1330 | col = self.col.YELLOW |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1331 | tprint(' ' + line, newline=True, colour=col) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1332 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1333 | def _output_err_lines(err_lines, colour): |
Simon Glass | b206d87 | 2020-04-09 15:08:28 -0600 | [diff] [blame] | 1334 | """Output the line of error/warning lines, if not empty |
| 1335 | |
| 1336 | Also increments self._error_lines if err_lines not empty |
| 1337 | |
| 1338 | Args: |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1339 | err_lines: List of ErrLine objects, each an error or warning |
| 1340 | line, possibly including a list of boards with that |
| 1341 | error/warning |
Simon Glass | b206d87 | 2020-04-09 15:08:28 -0600 | [diff] [blame] | 1342 | colour: Colour to use for output |
| 1343 | """ |
| 1344 | if err_lines: |
Simon Glass | 8c9a267 | 2020-04-09 15:08:37 -0600 | [diff] [blame] | 1345 | out_list = [] |
Simon Glass | 35d696d | 2020-04-09 15:08:36 -0600 | [diff] [blame] | 1346 | for line in err_lines: |
Simon Glass | cc2c0d1 | 2022-07-11 19:04:00 -0600 | [diff] [blame] | 1347 | names = [brd.target for brd in line.brds] |
Simon Glass | 9ef0ceb | 2020-04-09 15:08:38 -0600 | [diff] [blame] | 1348 | board_str = ' '.join(names) if names else '' |
Simon Glass | 8c9a267 | 2020-04-09 15:08:37 -0600 | [diff] [blame] | 1349 | if board_str: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 1350 | out = self.col.build(colour, line.char + '(') |
| 1351 | out += self.col.build(self.col.MAGENTA, board_str, |
Simon Glass | 8c9a267 | 2020-04-09 15:08:37 -0600 | [diff] [blame] | 1352 | bright=False) |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 1353 | out += self.col.build(colour, ') %s' % line.errline) |
Simon Glass | 8c9a267 | 2020-04-09 15:08:37 -0600 | [diff] [blame] | 1354 | else: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 1355 | out = self.col.build(colour, line.char + line.errline) |
Simon Glass | 8c9a267 | 2020-04-09 15:08:37 -0600 | [diff] [blame] | 1356 | out_list.append(out) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1357 | tprint('\n'.join(out_list)) |
Simon Glass | b206d87 | 2020-04-09 15:08:28 -0600 | [diff] [blame] | 1358 | self._error_lines += 1 |
| 1359 | |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1360 | |
Simon Glass | 4cf2b22 | 2018-11-06 16:02:12 -0700 | [diff] [blame] | 1361 | ok_boards = [] # List of boards fixed since last commit |
Simon Glass | 6af7101 | 2018-11-06 16:02:13 -0700 | [diff] [blame] | 1362 | warn_boards = [] # List of boards with warnings since last commit |
Simon Glass | 4cf2b22 | 2018-11-06 16:02:12 -0700 | [diff] [blame] | 1363 | err_boards = [] # List of new broken boards since last commit |
| 1364 | new_boards = [] # List of boards that didn't exist last time |
| 1365 | unknown_boards = [] # List of boards that were not built |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1366 | |
| 1367 | for target in board_dict: |
| 1368 | if target not in board_selected: |
| 1369 | continue |
| 1370 | |
| 1371 | # If the board was built last time, add its outcome to a list |
| 1372 | if target in self._base_board_dict: |
| 1373 | base_outcome = self._base_board_dict[target].rc |
| 1374 | outcome = board_dict[target] |
| 1375 | if outcome.rc == OUTCOME_UNKNOWN: |
Simon Glass | 4cf2b22 | 2018-11-06 16:02:12 -0700 | [diff] [blame] | 1376 | unknown_boards.append(target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1377 | elif outcome.rc < base_outcome: |
Simon Glass | 6af7101 | 2018-11-06 16:02:13 -0700 | [diff] [blame] | 1378 | if outcome.rc == OUTCOME_WARNING: |
| 1379 | warn_boards.append(target) |
| 1380 | else: |
| 1381 | ok_boards.append(target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1382 | elif outcome.rc > base_outcome: |
Simon Glass | 6af7101 | 2018-11-06 16:02:13 -0700 | [diff] [blame] | 1383 | if outcome.rc == OUTCOME_WARNING: |
| 1384 | warn_boards.append(target) |
| 1385 | else: |
| 1386 | err_boards.append(target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1387 | else: |
Simon Glass | 4cf2b22 | 2018-11-06 16:02:12 -0700 | [diff] [blame] | 1388 | new_boards.append(target) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1389 | |
Simon Glass | b206d87 | 2020-04-09 15:08:28 -0600 | [diff] [blame] | 1390 | # Get a list of errors and warnings that have appeared, and disappeared |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1391 | better_err, worse_err = _calc_error_delta(self._base_err_lines, |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1392 | self._base_err_line_boards, err_lines, err_line_boards, '') |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1393 | better_warn, worse_warn = _calc_error_delta(self._base_warn_lines, |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1394 | self._base_warn_line_boards, warn_lines, warn_line_boards, 'w') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1395 | |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 1396 | # For the IDE mode, print out all the output |
| 1397 | if self._ide: |
| 1398 | outcome = board_dict[target] |
| 1399 | for line in outcome.err_lines: |
| 1400 | sys.stderr.write(line) |
| 1401 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1402 | # Display results by arch |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 1403 | elif any((ok_boards, warn_boards, err_boards, unknown_boards, new_boards, |
Simon Glass | 6af7101 | 2018-11-06 16:02:13 -0700 | [diff] [blame] | 1404 | worse_err, better_err, worse_warn, better_warn)): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1405 | arch_list = {} |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1406 | self.add_outcome(board_selected, arch_list, ok_boards, '', |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1407 | self.col.GREEN) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1408 | self.add_outcome(board_selected, arch_list, warn_boards, 'w+', |
Simon Glass | 6af7101 | 2018-11-06 16:02:13 -0700 | [diff] [blame] | 1409 | self.col.YELLOW) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1410 | self.add_outcome(board_selected, arch_list, err_boards, '+', |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1411 | self.col.RED) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1412 | self.add_outcome(board_selected, arch_list, new_boards, '*', self.col.BLUE) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1413 | if self._show_unknown: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1414 | self.add_outcome(board_selected, arch_list, unknown_boards, '?', |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1415 | self.col.MAGENTA) |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1416 | for arch, target_list in arch_list.items(): |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1417 | tprint('%10s: %s' % (arch, target_list)) |
Simon Glass | 28370c1 | 2014-08-09 15:33:06 -0600 | [diff] [blame] | 1418 | self._error_lines += 1 |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1419 | _output_err_lines(better_err, colour=self.col.GREEN) |
| 1420 | _output_err_lines(worse_err, colour=self.col.RED) |
| 1421 | _output_err_lines(better_warn, colour=self.col.CYAN) |
| 1422 | _output_err_lines(worse_warn, colour=self.col.YELLOW) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1423 | |
| 1424 | if show_sizes: |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1425 | self.print_size_summary(board_selected, board_dict, show_detail, |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1426 | show_bloat) |
| 1427 | |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1428 | if show_environment and self._base_environment: |
| 1429 | lines = [] |
| 1430 | |
| 1431 | for target in board_dict: |
| 1432 | if target not in board_selected: |
| 1433 | continue |
| 1434 | |
| 1435 | tbase = self._base_environment[target] |
| 1436 | tenvironment = environment[target] |
| 1437 | environment_plus = {} |
| 1438 | environment_minus = {} |
| 1439 | environment_change = {} |
| 1440 | base = tbase.environment |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1441 | for key, value in tenvironment.environment.items(): |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1442 | if key not in base: |
| 1443 | environment_plus[key] = value |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1444 | for key, value in base.items(): |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1445 | if key not in tenvironment.environment: |
| 1446 | environment_minus[key] = value |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1447 | for key, value in base.items(): |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1448 | new_value = tenvironment.environment.get(key) |
| 1449 | if new_value and value != new_value: |
| 1450 | desc = '%s -> %s' % (value, new_value) |
| 1451 | environment_change[key] = desc |
| 1452 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1453 | _add_config(lines, target, environment_plus, environment_minus, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1454 | environment_change) |
| 1455 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1456 | _output_config_info(lines) |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1457 | |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1458 | if show_config and self._base_config: |
| 1459 | summary = {} |
| 1460 | arch_config_plus = {} |
| 1461 | arch_config_minus = {} |
| 1462 | arch_config_change = {} |
| 1463 | arch_list = [] |
| 1464 | |
| 1465 | for target in board_dict: |
| 1466 | if target not in board_selected: |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1467 | continue |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1468 | arch = board_selected[target].arch |
| 1469 | if arch not in arch_list: |
| 1470 | arch_list.append(arch) |
| 1471 | |
| 1472 | for arch in arch_list: |
| 1473 | arch_config_plus[arch] = {} |
| 1474 | arch_config_minus[arch] = {} |
| 1475 | arch_config_change[arch] = {} |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 1476 | for name in self.config_filenames: |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1477 | arch_config_plus[arch][name] = {} |
| 1478 | arch_config_minus[arch][name] = {} |
| 1479 | arch_config_change[arch][name] = {} |
| 1480 | |
| 1481 | for target in board_dict: |
| 1482 | if target not in board_selected: |
| 1483 | continue |
| 1484 | |
| 1485 | arch = board_selected[target].arch |
| 1486 | |
| 1487 | all_config_plus = {} |
| 1488 | all_config_minus = {} |
| 1489 | all_config_change = {} |
| 1490 | tbase = self._base_config[target] |
| 1491 | tconfig = config[target] |
| 1492 | lines = [] |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 1493 | for name in self.config_filenames: |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1494 | if not tconfig.config[name]: |
| 1495 | continue |
| 1496 | config_plus = {} |
| 1497 | config_minus = {} |
| 1498 | config_change = {} |
| 1499 | base = tbase.config[name] |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1500 | for key, value in tconfig.config[name].items(): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1501 | if key not in base: |
| 1502 | config_plus[key] = value |
| 1503 | all_config_plus[key] = value |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1504 | for key, value in base.items(): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1505 | if key not in tconfig.config[name]: |
| 1506 | config_minus[key] = value |
| 1507 | all_config_minus[key] = value |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1508 | for key, value in base.items(): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1509 | new_value = tconfig.config.get(key) |
| 1510 | if new_value and value != new_value: |
| 1511 | desc = '%s -> %s' % (value, new_value) |
| 1512 | config_change[key] = desc |
| 1513 | all_config_change[key] = desc |
| 1514 | |
| 1515 | arch_config_plus[arch][name].update(config_plus) |
| 1516 | arch_config_minus[arch][name].update(config_minus) |
| 1517 | arch_config_change[arch][name].update(config_change) |
| 1518 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1519 | _add_config(lines, name, config_plus, config_minus, |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1520 | config_change) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1521 | _add_config(lines, 'all', all_config_plus, all_config_minus, |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1522 | all_config_change) |
| 1523 | summary[target] = '\n'.join(lines) |
| 1524 | |
| 1525 | lines_by_target = {} |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1526 | for target, lines in summary.items(): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1527 | if lines in lines_by_target: |
| 1528 | lines_by_target[lines].append(target) |
| 1529 | else: |
| 1530 | lines_by_target[lines] = [target] |
| 1531 | |
| 1532 | for arch in arch_list: |
| 1533 | lines = [] |
| 1534 | all_plus = {} |
| 1535 | all_minus = {} |
| 1536 | all_change = {} |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 1537 | for name in self.config_filenames: |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1538 | all_plus.update(arch_config_plus[arch][name]) |
| 1539 | all_minus.update(arch_config_minus[arch][name]) |
| 1540 | all_change.update(arch_config_change[arch][name]) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1541 | _add_config(lines, name, arch_config_plus[arch][name], |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1542 | arch_config_minus[arch][name], |
| 1543 | arch_config_change[arch][name]) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1544 | _add_config(lines, 'all', all_plus, all_minus, all_change) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1545 | #arch_summary[target] = '\n'.join(lines) |
| 1546 | if lines: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1547 | tprint('%s:' % arch) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1548 | _output_config_info(lines) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1549 | |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1550 | for lines, targets in lines_by_target.items(): |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1551 | if not lines: |
| 1552 | continue |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1553 | tprint('%s :' % ' '.join(sorted(targets))) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1554 | _output_config_info(lines.split('\n')) |
Simon Glass | 8270e3c | 2015-08-25 21:52:14 -0600 | [diff] [blame] | 1555 | |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1556 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1557 | # Save our updated information for the next call to this function |
| 1558 | self._base_board_dict = board_dict |
| 1559 | self._base_err_lines = err_lines |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1560 | self._base_warn_lines = warn_lines |
| 1561 | self._base_err_line_boards = err_line_boards |
| 1562 | self._base_warn_line_boards = warn_line_boards |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1563 | self._base_config = config |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1564 | self._base_environment = environment |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1565 | |
| 1566 | # Get a list of boards that did not get built, if needed |
| 1567 | not_built = [] |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 1568 | for brd in board_selected: |
| 1569 | if not brd in board_dict: |
| 1570 | not_built.append(brd) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1571 | if not_built: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1572 | tprint("Boards not built (%d): %s" % (len(not_built), |
Simon Glass | 4653a88 | 2014-09-05 19:00:07 -0600 | [diff] [blame] | 1573 | ', '.join(not_built))) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1574 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1575 | def produce_result_summary(self, commit_upto, commits, board_selected): |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1576 | (board_dict, err_lines, err_line_boards, warn_lines, |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1577 | warn_line_boards, config, environment) = self.get_result_summary( |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1578 | board_selected, commit_upto, |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 1579 | read_func_sizes=self._show_bloat, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1580 | read_config=self._show_config, |
| 1581 | read_environment=self._show_environment) |
Simon Glass | b2ea7ab | 2014-08-09 15:33:02 -0600 | [diff] [blame] | 1582 | if commits: |
| 1583 | msg = '%02d: %s' % (commit_upto + 1, |
| 1584 | commits[commit_upto].subject) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1585 | tprint(msg, colour=self.col.BLUE) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1586 | self.print_result_summary(board_selected, board_dict, |
Simon Glass | ed96665 | 2014-08-28 09:43:43 -0600 | [diff] [blame] | 1587 | err_lines if self._show_errors else [], err_line_boards, |
Simon Glass | e30965d | 2014-08-28 09:43:44 -0600 | [diff] [blame] | 1588 | warn_lines if self._show_errors else [], warn_line_boards, |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 1589 | config, environment, self._show_sizes, self._show_detail, |
| 1590 | self._show_bloat, self._show_config, self._show_environment) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1591 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1592 | def show_summary(self, commits, board_selected): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1593 | """Show a build summary for U-Boot for a given board list. |
| 1594 | |
| 1595 | Reset the result summary, then repeatedly call GetResultSummary on |
| 1596 | each commit's results, then display the differences we see. |
| 1597 | |
| 1598 | Args: |
| 1599 | commit: Commit objects to summarise |
| 1600 | board_selected: Dict containing boards to summarise |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1601 | """ |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 1602 | self.commit_count = len(commits) if commits else 1 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1603 | self.commits = commits |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1604 | self.reset_result_summary(board_selected) |
Simon Glass | 28370c1 | 2014-08-09 15:33:06 -0600 | [diff] [blame] | 1605 | self._error_lines = 0 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1606 | |
| 1607 | for commit_upto in range(0, self.commit_count, self._step): |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1608 | self.produce_result_summary(commit_upto, commits, board_selected) |
Simon Glass | 28370c1 | 2014-08-09 15:33:06 -0600 | [diff] [blame] | 1609 | if not self._error_lines: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1610 | tprint('(no errors to report)', colour=self.col.GREEN) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1611 | |
| 1612 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1613 | def setup_build(self, board_selected, commits): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1614 | """Set up ready to start a build. |
| 1615 | |
| 1616 | Args: |
| 1617 | board_selected: Selected boards to build |
| 1618 | commits: Selected commits to build |
| 1619 | """ |
| 1620 | # First work out how many commits we will build |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1621 | count = (self.commit_count + self._step - 1) // self._step |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1622 | self.count = len(board_selected) * count |
| 1623 | self.upto = self.warned = self.fail = 0 |
| 1624 | self._timestamps = collections.deque() |
| 1625 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1626 | def get_thread_dir(self, thread_num): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1627 | """Get the directory path to the working dir for a thread. |
| 1628 | |
| 1629 | Args: |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1630 | thread_num: Number of thread to check (-1 for main process, which |
| 1631 | is treated as 0) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1632 | """ |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 1633 | if self.work_in_output: |
| 1634 | return self._working_dir |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1635 | return os.path.join(self._working_dir, '%02d' % max(thread_num, 0)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1636 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1637 | def _prepare_thread(self, thread_num, setup_git): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1638 | """Prepare the working directory for a thread. |
| 1639 | |
| 1640 | This clones or fetches the repo into the thread's work directory. |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1641 | Optionally, it can create a linked working tree of the repo in the |
| 1642 | thread's work directory instead. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1643 | |
| 1644 | Args: |
| 1645 | thread_num: Thread number (0, 1, ...) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1646 | setup_git: |
| 1647 | 'clone' to set up a git clone |
| 1648 | 'worktree' to set up a git worktree |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1649 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1650 | thread_dir = self.get_thread_dir(thread_num) |
Simon Glass | f06d333 | 2023-07-19 17:49:08 -0600 | [diff] [blame] | 1651 | builderthread.mkdir(thread_dir) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1652 | git_dir = os.path.join(thread_dir, '.git') |
| 1653 | |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1654 | # Create a worktree or a git repo clone for this thread if it |
| 1655 | # doesn't already exist |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 1656 | if setup_git and self.git_dir: |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1657 | src_dir = os.path.abspath(self.git_dir) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1658 | if os.path.isdir(git_dir): |
| 1659 | # This is a clone of the src_dir repo, we can keep using |
| 1660 | # it but need to fetch from src_dir. |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1661 | tprint('\rFetching repo for thread %d' % thread_num, |
Simon Glass | 212c0b8 | 2020-04-09 15:08:43 -0600 | [diff] [blame] | 1662 | newline=False) |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 1663 | gitutil.fetch(git_dir, thread_dir) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1664 | terminal.print_clear() |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1665 | elif os.path.isfile(git_dir): |
| 1666 | # This is a worktree of the src_dir repo, we don't need to |
| 1667 | # create it again or update it in any way. |
| 1668 | pass |
| 1669 | elif os.path.exists(git_dir): |
| 1670 | # Don't know what could trigger this, but we probably |
| 1671 | # can't create a git worktree/clone here. |
| 1672 | raise ValueError('Git dir %s exists, but is not a file ' |
| 1673 | 'or a directory.' % git_dir) |
| 1674 | elif setup_git == 'worktree': |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1675 | tprint('\rChecking out worktree for thread %d' % thread_num, |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1676 | newline=False) |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 1677 | gitutil.add_worktree(src_dir, thread_dir) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1678 | terminal.print_clear() |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1679 | elif setup_git == 'clone' or setup_git == True: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1680 | tprint('\rCloning repo for thread %d' % thread_num, |
Simon Glass | 21f0eb3 | 2016-09-18 16:48:31 -0600 | [diff] [blame] | 1681 | newline=False) |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 1682 | gitutil.clone(src_dir, thread_dir) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1683 | terminal.print_clear() |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1684 | else: |
| 1685 | raise ValueError("Can't setup git repo with %s." % setup_git) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1686 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1687 | def _prepare_working_space(self, max_threads, setup_git): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1688 | """Prepare the working directory for use. |
| 1689 | |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1690 | Set up the git repo for each thread. Creates a linked working tree |
| 1691 | if git-worktree is available, or clones the repo if it isn't. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1692 | |
| 1693 | Args: |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1694 | max_threads: Maximum number of threads we expect to need. If 0 then |
| 1695 | 1 is set up, since the main process still needs somewhere to |
| 1696 | work |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1697 | setup_git: True to set up a git worktree or a git clone |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1698 | """ |
Simon Glass | f06d333 | 2023-07-19 17:49:08 -0600 | [diff] [blame] | 1699 | builderthread.mkdir(self._working_dir) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1700 | if setup_git and self.git_dir: |
| 1701 | src_dir = os.path.abspath(self.git_dir) |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 1702 | if gitutil.check_worktree_is_available(src_dir): |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1703 | setup_git = 'worktree' |
| 1704 | # If we previously added a worktree but the directory for it |
| 1705 | # got deleted, we need to prune its files from the repo so |
| 1706 | # that we can check out another in its place. |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 1707 | gitutil.prune_worktrees(src_dir) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 1708 | else: |
| 1709 | setup_git = 'clone' |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1710 | |
| 1711 | # Always do at least one thread |
| 1712 | for thread in range(max(max_threads, 1)): |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1713 | self._prepare_thread(thread, setup_git) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1714 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1715 | def _get_output_space_removals(self): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1716 | """Get the output directories ready to receive files. |
| 1717 | |
Simon Glass | 925f6ad | 2020-03-18 09:42:45 -0600 | [diff] [blame] | 1718 | Figure out what needs to be deleted in the output directory before it |
| 1719 | can be used. We only delete old buildman directories which have the |
Simon Glass | 4a7419b | 2023-07-19 17:49:10 -0600 | [diff] [blame] | 1720 | expected name pattern. See get_output_dir(). |
Simon Glass | 925f6ad | 2020-03-18 09:42:45 -0600 | [diff] [blame] | 1721 | |
| 1722 | Returns: |
| 1723 | List of full paths of directories to remove |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1724 | """ |
Simon Glass | 1a91567 | 2014-12-01 17:33:53 -0700 | [diff] [blame] | 1725 | if not self.commits: |
| 1726 | return |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1727 | dir_list = [] |
| 1728 | for commit_upto in range(self.commit_count): |
Simon Glass | 4a7419b | 2023-07-19 17:49:10 -0600 | [diff] [blame] | 1729 | dir_list.append(self.get_output_dir(commit_upto)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1730 | |
Simon Glass | b222abe | 2016-09-18 16:48:32 -0600 | [diff] [blame] | 1731 | to_remove = [] |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1732 | for dirname in glob.glob(os.path.join(self.base_dir, '*')): |
| 1733 | if dirname not in dir_list: |
Simon Glass | 925f6ad | 2020-03-18 09:42:45 -0600 | [diff] [blame] | 1734 | leaf = dirname[len(self.base_dir) + 1:] |
Ovidiu Panait | 7664b03 | 2020-05-15 09:30:12 +0300 | [diff] [blame] | 1735 | m = re.match('[0-9]+_g[0-9a-f]+_.*', leaf) |
Simon Glass | 925f6ad | 2020-03-18 09:42:45 -0600 | [diff] [blame] | 1736 | if m: |
| 1737 | to_remove.append(dirname) |
| 1738 | return to_remove |
| 1739 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1740 | def _prepare_output_space(self): |
Simon Glass | 925f6ad | 2020-03-18 09:42:45 -0600 | [diff] [blame] | 1741 | """Get the output directories ready to receive files. |
| 1742 | |
| 1743 | We delete any output directories which look like ones we need to |
| 1744 | create. Having left over directories is confusing when the user wants |
| 1745 | to check the output manually. |
| 1746 | """ |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1747 | to_remove = self._get_output_space_removals() |
Simon Glass | b222abe | 2016-09-18 16:48:32 -0600 | [diff] [blame] | 1748 | if to_remove: |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1749 | tprint('Removing %d old build directories...' % len(to_remove), |
Simon Glass | b222abe | 2016-09-18 16:48:32 -0600 | [diff] [blame] | 1750 | newline=False) |
| 1751 | for dirname in to_remove: |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1752 | shutil.rmtree(dirname) |
Simon Glass | 098b10f | 2022-01-29 14:14:18 -0700 | [diff] [blame] | 1753 | terminal.print_clear() |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1754 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1755 | def build_boards(self, commits, board_selected, keep_outputs, verbose): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1756 | """Build all commits for a list of boards |
| 1757 | |
| 1758 | Args: |
| 1759 | commits: List of commits to be build, each a Commit object |
| 1760 | boards_selected: Dict of selected boards, key is target name, |
| 1761 | value is Board object |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1762 | keep_outputs: True to save build output files |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 1763 | verbose: Display build results as they are completed |
Simon Glass | 2c3deb9 | 2014-08-28 09:43:39 -0600 | [diff] [blame] | 1764 | Returns: |
| 1765 | Tuple containing: |
| 1766 | - number of boards that failed to build |
| 1767 | - number of boards that issued warnings |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 1768 | - list of thread exceptions raised |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1769 | """ |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 1770 | self.commit_count = len(commits) if commits else 1 |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1771 | self.commits = commits |
Simon Glass | e5a0e5d | 2014-08-09 15:33:03 -0600 | [diff] [blame] | 1772 | self._verbose = verbose |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1773 | |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1774 | self.reset_result_summary(board_selected) |
Simon Glass | f06d333 | 2023-07-19 17:49:08 -0600 | [diff] [blame] | 1775 | builderthread.mkdir(self.base_dir, parents = True) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1776 | self._prepare_working_space(min(self.num_threads, len(board_selected)), |
Simon Glass | fea5858 | 2014-08-09 15:32:59 -0600 | [diff] [blame] | 1777 | commits is not None) |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1778 | self._prepare_output_space() |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 1779 | if not self._ide: |
| 1780 | tprint('\rStarting build...', newline=False) |
Simon Glass | 2ce06f5 | 2023-09-07 10:00:19 -0600 | [diff] [blame] | 1781 | self._start_time = datetime.now() |
Simon Glass | 37edf5f | 2023-07-19 17:49:06 -0600 | [diff] [blame] | 1782 | self.setup_build(board_selected, commits) |
| 1783 | self.process_result(None) |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 1784 | self.thread_exceptions = [] |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1785 | # Create jobs to build all commits for each board |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 1786 | for brd in board_selected.values(): |
Simon Glass | 190064b | 2014-08-09 15:33:00 -0600 | [diff] [blame] | 1787 | job = builderthread.BuilderJob() |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 1788 | job.brd = brd |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1789 | job.commits = commits |
| 1790 | job.keep_outputs = keep_outputs |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 1791 | job.work_in_output = self.work_in_output |
Simon Glass | 2b4806e | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 1792 | job.adjust_cfg = self.adjust_cfg |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1793 | job.step = self._step |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1794 | if self.num_threads: |
| 1795 | self.queue.put(job) |
| 1796 | else: |
Simon Glass | f06d333 | 2023-07-19 17:49:08 -0600 | [diff] [blame] | 1797 | self._single_builder.run_job(job) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1798 | |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1799 | if self.num_threads: |
| 1800 | term = threading.Thread(target=self.queue.join) |
| 1801 | term.setDaemon(True) |
| 1802 | term.start() |
| 1803 | while term.is_alive(): |
| 1804 | term.join(100) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 1805 | |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 1806 | # Wait until we have processed all output |
| 1807 | self.out_queue.join() |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 1808 | if not self._ide: |
| 1809 | tprint() |
Simon Glass | 7b33f21 | 2020-04-09 15:08:47 -0600 | [diff] [blame] | 1810 | |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 1811 | msg = 'Completed: %d total built' % self.count |
| 1812 | if self.already_done: |
| 1813 | msg += ' (%d previously' % self.already_done |
| 1814 | if self.already_done != self.count: |
| 1815 | msg += ', %d newly' % (self.count - self.already_done) |
| 1816 | msg += ')' |
| 1817 | duration = datetime.now() - self._start_time |
| 1818 | if duration > timedelta(microseconds=1000000): |
| 1819 | if duration.microseconds >= 500000: |
| 1820 | duration = duration + timedelta(seconds=1) |
| 1821 | duration = duration - timedelta(microseconds=duration.microseconds) |
| 1822 | rate = float(self.count) / duration.total_seconds() |
| 1823 | msg += ', duration %s, rate %1.2f' % (duration, rate) |
| 1824 | tprint(msg) |
| 1825 | if self.thread_exceptions: |
| 1826 | tprint('Failed: %d thread exceptions' % len(self.thread_exceptions), |
| 1827 | colour=self.col.RED) |
Simon Glass | 7b33f21 | 2020-04-09 15:08:47 -0600 | [diff] [blame] | 1828 | |
Simon Glass | 8116c78 | 2021-04-11 16:27:27 +1200 | [diff] [blame] | 1829 | return (self.fail, self.warned, self.thread_exceptions) |