blob: 5cb44456f819e0b45d5124dad0a362c923eeabc4 [file] [log] [blame]
Patrick Williams02871c92021-02-01 20:57:19 -06001#!/usr/bin/env python3
2#
3# Build the required docker image to run package unit tests
4#
5# Script Variables:
6# DOCKER_IMG_NAME: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# DISTRO: <optional, the distro to build a docker image against>
Patrick Williams50837432021-02-06 12:24:05 -06009# FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker
10# images to be rebuilt rather than reusing caches.>
11# BUILD_URL: <optional, used to detect running under CI context
12# (ex. Jenkins)>
Patrick Williams02871c92021-02-01 20:57:19 -060013# BRANCH: <optional, branch to build from each of the openbmc/
14# repositories>
15# default is master, which will be used if input branch not
16# provided or not found
17# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the
18# default ones in /etc/apt/sources.list>
19# default is empty, and no mirror is used.
20# http_proxy The HTTP address of the proxy server to connect to.
21# Default: "", proxy is not setup if this is not set
22
23import os
24import sys
Patrick Williamsb16f3e22021-02-06 08:16:47 -060025import threading
Patrick Williamsa18d9c52021-02-05 09:52:26 -060026from datetime import date
27from hashlib import sha256
Patrick Williamse08ffba2022-12-05 10:33:46 -060028
29# typing.Dict is used for type-hints.
30from typing import Any, Callable, Dict, Iterable, Optional # noqa: F401
Patrick Williams02871c92021-02-01 20:57:19 -060031
Patrick Williams41d86212022-11-25 18:28:43 -060032from sh import docker, git, nproc, uname # type: ignore
33
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060034try:
35 # Python before 3.8 doesn't have TypedDict, so reroute to standard 'dict'.
36 from typing import TypedDict
Patrick Williams41d86212022-11-25 18:28:43 -060037except Exception:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060038
39 class TypedDict(dict): # type: ignore
40 # We need to do this to eat the 'total' argument.
Patrick Williams41d86212022-11-25 18:28:43 -060041 def __init_subclass__(cls, **kwargs: Any) -> None:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060042 super().__init_subclass__()
43
44
45# Declare some variables used in package definitions.
Patrick Williamsaae36d12021-02-04 16:30:04 -060046prefix = "/usr/local"
Patrick Williams02871c92021-02-01 20:57:19 -060047proc_count = nproc().strip()
Patrick Williams02871c92021-02-01 20:57:19 -060048
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060049
50class PackageDef(TypedDict, total=False):
Patrick Williams05fb2a02022-10-11 17:22:33 -050051 """Package Definition for packages dictionary."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060052
53 # rev [optional]: Revision of package to use.
54 rev: str
55 # url [optional]: lambda function to create URL: (package, rev) -> url.
56 url: Callable[[str, str], str]
57 # depends [optional]: List of package dependencies.
58 depends: Iterable[str]
59 # build_type [required]: Build type used for package.
60 # Currently supported: autoconf, cmake, custom, make, meson
61 build_type: str
62 # build_steps [optional]: Steps to run for 'custom' build_type.
63 build_steps: Iterable[str]
64 # config_flags [optional]: List of options to pass configuration tool.
65 config_flags: Iterable[str]
66 # config_env [optional]: List of environment variables to set for config.
67 config_env: Iterable[str]
68 # custom_post_dl [optional]: List of steps to run after download, but
69 # before config / build / install.
70 custom_post_dl: Iterable[str]
Patrick Williams6bce2ca2021-02-12 21:13:37 -060071 # custom_post_install [optional]: List of steps to run after install.
72 custom_post_install: Iterable[str]
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060073
74 # __tag [private]: Generated Docker tag name for package stage.
75 __tag: str
76 # __package [private]: Package object associated with this package.
77 __package: Any # Type is Package, but not defined yet.
78
Patrick Williams02871c92021-02-01 20:57:19 -060079
Patrick Williams72043242021-02-02 10:31:45 -060080# Packages to include in image.
81packages = {
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060082 "boost": PackageDef(
Ed Tanous45bfd1f2022-11-30 15:50:28 -080083 rev="1.81.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060084 url=(
Ed Tanous45bfd1f2022-11-30 15:50:28 -080085 lambda pkg, rev: f"https://boostorg.jfrog.io/artifactory/main/release/{rev}/source/{pkg}_{rev.replace('.', '_')}.tar.gz" # noqa: E501
Patrick Williams2abc4a42021-02-03 06:11:40 -060086 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060087 build_type="custom",
88 build_steps=[
Patrick Williamse08ffba2022-12-05 10:33:46 -060089 (
90 "./bootstrap.sh"
91 f" --prefix={prefix} --with-libraries=context,coroutine"
92 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -060093 "./b2",
94 f"./b2 install --prefix={prefix}",
95 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060096 ),
97 "USCiLab/cereal": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -050098 rev="v1.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060099 build_type="custom",
100 build_steps=[f"cp -a include/cereal/ {prefix}/include/"],
101 ),
Ed Tanousc7198552022-07-01 08:15:50 -0700102 "danmar/cppcheck": PackageDef(
Patrick Williamsbe4bd082022-10-03 08:59:12 -0500103 rev="2.9",
Ed Tanousc7198552022-07-01 08:15:50 -0700104 build_type="cmake",
105 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600106 "CLIUtils/CLI11": PackageDef(
107 rev="v1.9.1",
108 build_type="cmake",
109 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600110 "-DBUILD_TESTING=OFF",
111 "-DCLI11_BUILD_DOCS=OFF",
112 "-DCLI11_BUILD_EXAMPLES=OFF",
113 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600114 ),
115 "fmtlib/fmt": PackageDef(
William A. Kennington III652d8ae2022-10-02 17:01:16 -0700116 rev="9.1.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600117 build_type="cmake",
118 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600119 "-DFMT_DOC=OFF",
120 "-DFMT_TEST=OFF",
121 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600122 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600123 "Naios/function2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500124 rev="4.2.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600125 build_type="custom",
126 build_steps=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600127 f"mkdir {prefix}/include/function2",
128 f"cp include/function2/function2.hpp {prefix}/include/function2/",
129 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600130 ),
Patrick Williamsed9414e2022-09-08 11:23:01 -0500131 # release-1.12.1
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600132 "google/googletest": PackageDef(
Patrick Williamsed9414e2022-09-08 11:23:01 -0500133 rev="58d77fa8070e8cec2dc1ed015d66b454c8d78850",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600134 build_type="cmake",
William A. Kennington III4dd32c02021-05-28 01:58:13 -0700135 config_env=["CXXFLAGS=-std=c++20"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600136 config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"],
137 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600138 "nlohmann/json": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500139 rev="v3.11.2",
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600140 build_type="cmake",
141 config_flags=["-DJSON_BuildTests=OFF"],
142 custom_post_install=[
Patrick Williamse08ffba2022-12-05 10:33:46 -0600143 (
144 f"ln -s {prefix}/include/nlohmann/json.hpp"
145 f" {prefix}/include/json.hpp"
146 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -0600147 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600148 ),
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100149 "json-c/json-c": PackageDef(
150 rev="json-c-0.16-20220414",
151 build_type="cmake",
152 ),
Patrick Williams02871c92021-02-01 20:57:19 -0600153 # Snapshot from 2019-05-24
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600154 "linux-test-project/lcov": PackageDef(
155 rev="v1.15",
156 build_type="make",
157 ),
Patrick Williams001055b2022-11-28 07:58:27 -0600158 # dev-6.0 2022-11-28
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600159 "openbmc/linux": PackageDef(
Patrick Williams001055b2022-11-28 07:58:27 -0600160 rev="1b16243b004ce4d977a9f3b9d9e715cf5028f867",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600161 build_type="custom",
162 build_steps=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600163 f"make -j{proc_count} defconfig",
164 f"make INSTALL_HDR_PATH={prefix} headers_install",
165 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600166 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600167 "LibVNC/libvncserver": PackageDef(
168 rev="LibVNCServer-0.9.13",
169 build_type="cmake",
170 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600171 "leethomason/tinyxml2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500172 rev="9.0.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600173 build_type="cmake",
174 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600175 "tristanpenman/valijson": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500176 rev="v0.7",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600177 build_type="cmake",
178 config_flags=[
Patrick Williams0eedeed2021-02-06 19:06:09 -0600179 "-Dvalijson_BUILD_TESTS=0",
180 "-Dvalijson_INSTALL_HEADERS=1",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600181 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600182 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600183 "open-power/pdbg": PackageDef(build_type="autoconf"),
184 "openbmc/gpioplus": PackageDef(
185 depends=["openbmc/stdplus"],
186 build_type="meson",
187 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600188 "-Dexamples=false",
189 "-Dtests=disabled",
190 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600191 ),
192 "openbmc/phosphor-dbus-interfaces": PackageDef(
193 depends=["openbmc/sdbusplus"],
194 build_type="meson",
William A. Kennington III4fe87772022-02-11 15:44:29 -0800195 config_flags=["-Dgenerate_md=false"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600196 ),
197 "openbmc/phosphor-logging": PackageDef(
198 depends=[
Patrick Williams83394612021-02-03 07:12:50 -0600199 "USCiLab/cereal",
Patrick Williams83394612021-02-03 07:12:50 -0600200 "openbmc/phosphor-dbus-interfaces",
201 "openbmc/sdbusplus",
202 "openbmc/sdeventplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600203 ],
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500204 build_type="meson",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600205 config_flags=[
William A. Kennington III6c98f282022-10-05 13:37:04 -0700206 "-Dlibonly=true",
207 "-Dtests=disabled",
Patrick Williams5eabdae2022-04-14 14:34:34 -0500208 f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600209 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600210 ),
211 "openbmc/phosphor-objmgr": PackageDef(
212 depends=[
Brad Bishop11e57622022-09-14 16:10:25 -0400213 "CLIUtils/CLI11",
Patrick Williams70af95c2022-09-27 16:55:41 -0500214 "boost",
Patrick Williams83394612021-02-03 07:12:50 -0600215 "leethomason/tinyxml2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500216 "openbmc/phosphor-dbus-interfaces",
Patrick Williams83394612021-02-03 07:12:50 -0600217 "openbmc/phosphor-logging",
218 "openbmc/sdbusplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600219 ],
Brad Bishop1197e352021-08-03 19:25:46 -0400220 build_type="meson",
221 config_flags=[
222 "-Dtests=disabled",
223 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600224 ),
Manojkiran Eda1c19e452022-10-03 11:01:59 +0530225 "openbmc/libpldm": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600226 build_type="meson",
227 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600228 "-Doem-ibm=enabled",
229 "-Dtests=disabled",
230 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600231 ),
232 "openbmc/sdbusplus": PackageDef(
233 build_type="meson",
234 custom_post_dl=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600235 "cd tools",
236 f"./setup.py install --root=/ --prefix={prefix}",
237 "cd ..",
238 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600239 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600240 "-Dexamples=disabled",
241 "-Dtests=disabled",
242 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600243 ),
244 "openbmc/sdeventplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500245 depends=[
246 "Naios/function2",
247 "openbmc/stdplus",
248 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600249 build_type="meson",
250 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600251 "-Dexamples=false",
252 "-Dtests=disabled",
253 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600254 ),
255 "openbmc/stdplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500256 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500257 "fmtlib/fmt",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700258 "google/googletest",
259 "Naios/function2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500260 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600261 build_type="meson",
262 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600263 "-Dexamples=false",
264 "-Dtests=disabled",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700265 "-Dgtest=enabled",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600266 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600267 ),
268} # type: Dict[str, PackageDef]
Patrick Williams02871c92021-02-01 20:57:19 -0600269
270# Define common flags used for builds
Patrick Williams02871c92021-02-01 20:57:19 -0600271configure_flags = " ".join(
272 [
273 f"--prefix={prefix}",
274 ]
275)
276cmake_flags = " ".join(
277 [
Patrick Williams02871c92021-02-01 20:57:19 -0600278 "-DBUILD_SHARED_LIBS=ON",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600279 "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
Patrick Williams02871c92021-02-01 20:57:19 -0600280 f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600281 "-GNinja",
282 "-DCMAKE_MAKE_PROGRAM=ninja",
Patrick Williams02871c92021-02-01 20:57:19 -0600283 ]
284)
285meson_flags = " ".join(
286 [
287 "--wrap-mode=nodownload",
288 f"-Dprefix={prefix}",
289 ]
290)
291
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600292
293class Package(threading.Thread):
294 """Class used to build the Docker stages for each package.
295
296 Generally, this class should not be instantiated directly but through
297 Package.generate_all().
298 """
299
300 # Copy the packages dictionary.
301 packages = packages.copy()
302
303 # Lock used for thread-safety.
304 lock = threading.Lock()
305
306 def __init__(self, pkg: str):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500307 """pkg - The name of this package (ex. foo/bar )"""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600308 super(Package, self).__init__()
309
310 self.package = pkg
311 self.exception = None # type: Optional[Exception]
312
313 # Reference to this package's
314 self.pkg_def = Package.packages[pkg]
315 self.pkg_def["__package"] = self
316
317 def run(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500318 """Thread 'run' function. Builds the Docker stage."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600319
320 # In case this package has no rev, fetch it from Github.
321 self._update_rev()
322
323 # Find all the Package objects that this package depends on.
324 # This section is locked because we are looking into another
325 # package's PackageDef dict, which could be being modified.
326 Package.lock.acquire()
327 deps: Iterable[Package] = [
328 Package.packages[deppkg]["__package"]
329 for deppkg in self.pkg_def.get("depends", [])
330 ]
331 Package.lock.release()
332
333 # Wait until all the depends finish building. We need them complete
334 # for the "COPY" commands.
335 for deppkg in deps:
336 deppkg.join()
337
338 # Generate this package's Dockerfile.
339 dockerfile = f"""
340FROM {docker_base_img_name}
341{self._df_copycmds()}
342{self._df_build()}
343"""
344
345 # Generate the resulting tag name and save it to the PackageDef.
346 # This section is locked because we are modifying the PackageDef,
347 # which can be accessed by other threads.
348 Package.lock.acquire()
349 tag = Docker.tagname(self._stagename(), dockerfile)
350 self.pkg_def["__tag"] = tag
351 Package.lock.release()
352
353 # Do the build / save any exceptions.
354 try:
355 Docker.build(self.package, tag, dockerfile)
356 except Exception as e:
357 self.exception = e
358
359 @classmethod
360 def generate_all(cls) -> None:
361 """Ensure a Docker stage is created for all defined packages.
362
363 These are done in parallel but with appropriate blocking per
364 package 'depends' specifications.
365 """
366
367 # Create a Package for each defined package.
368 pkg_threads = [Package(p) for p in cls.packages.keys()]
369
370 # Start building them all.
Patrick Williams6dbd7802021-02-20 08:34:10 -0600371 # This section is locked because threads depend on each other,
372 # based on the packages, and they cannot 'join' on a thread
373 # which is not yet started. Adding a lock here allows all the
374 # threads to start before they 'join' their dependencies.
375 Package.lock.acquire()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600376 for t in pkg_threads:
377 t.start()
Patrick Williams6dbd7802021-02-20 08:34:10 -0600378 Package.lock.release()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600379
380 # Wait for completion.
381 for t in pkg_threads:
382 t.join()
383 # Check if the thread saved off its own exception.
384 if t.exception:
385 print(f"Package {t.package} failed!", file=sys.stderr)
386 raise t.exception
387
388 @staticmethod
389 def df_all_copycmds() -> str:
390 """Formulate the Dockerfile snippet necessary to copy all packages
391 into the final image.
392 """
393 return Package.df_copycmds_set(Package.packages.keys())
394
395 @classmethod
396 def depcache(cls) -> str:
397 """Create the contents of the '/tmp/depcache'.
398 This file is a comma-separated list of "<pkg>:<rev>".
399 """
400
401 # This needs to be sorted for consistency.
402 depcache = ""
403 for pkg in sorted(cls.packages.keys()):
404 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
405 return depcache
406
407 def _update_rev(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500408 """Look up the HEAD for missing a static rev."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600409
410 if "rev" in self.pkg_def:
411 return
412
Patrick Williams65b21fb2021-02-12 21:21:14 -0600413 # Check if Jenkins/Gerrit gave us a revision and use it.
414 if gerrit_project == self.package and gerrit_rev:
415 print(
416 f"Found Gerrit revision for {self.package}: {gerrit_rev}",
417 file=sys.stderr,
418 )
419 self.pkg_def["rev"] = gerrit_rev
420 return
421
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600422 # Ask Github for all the branches.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500423 lookup = git(
424 "ls-remote", "--heads", f"https://github.com/{self.package}"
425 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600426
427 # Find the branch matching {branch} (or fallback to master).
428 # This section is locked because we are modifying the PackageDef.
429 Package.lock.acquire()
430 for line in lookup.split("\n"):
431 if f"refs/heads/{branch}" in line:
432 self.pkg_def["rev"] = line.split()[0]
Patrick Williamsc7d73642022-10-11 17:22:06 -0500433 elif (
434 "refs/heads/master" in line or "refs/heads/main" in line
435 ) and "rev" not in self.pkg_def:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600436 self.pkg_def["rev"] = line.split()[0]
437 Package.lock.release()
438
439 def _stagename(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500440 """Create a name for the Docker stage associated with this pkg."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600441 return self.package.replace("/", "-").lower()
442
443 def _url(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500444 """Get the URL for this package."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600445 rev = self.pkg_def["rev"]
446
447 # If the lambda exists, call it.
448 if "url" in self.pkg_def:
449 return self.pkg_def["url"](self.package, rev)
450
451 # Default to the github archive URL.
452 return f"https://github.com/{self.package}/archive/{rev}.tar.gz"
453
454 def _cmd_download(self) -> str:
455 """Formulate the command necessary to download and unpack to source."""
456
457 url = self._url()
458 if ".tar." not in url:
459 raise NotImplementedError(
460 f"Unhandled download type for {self.package}: {url}"
461 )
462
463 cmd = f"curl -L {url} | tar -x"
464
465 if url.endswith(".bz2"):
466 cmd += "j"
467 elif url.endswith(".gz"):
468 cmd += "z"
469 else:
470 raise NotImplementedError(
471 f"Unknown tar flags needed for {self.package}: {url}"
472 )
473
474 return cmd
475
476 def _cmd_cd_srcdir(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500477 """Formulate the command necessary to 'cd' into the source dir."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600478 return f"cd {self.package.split('/')[-1]}*"
479
480 def _df_copycmds(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500481 """Formulate the dockerfile snippet necessary to COPY all depends."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600482
483 if "depends" not in self.pkg_def:
484 return ""
485 return Package.df_copycmds_set(self.pkg_def["depends"])
486
487 @staticmethod
488 def df_copycmds_set(pkgs: Iterable[str]) -> str:
489 """Formulate the Dockerfile snippet necessary to COPY a set of
490 packages into a Docker stage.
491 """
492
493 copy_cmds = ""
494
495 # Sort the packages for consistency.
496 for p in sorted(pkgs):
497 tag = Package.packages[p]["__tag"]
498 copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n"
499 # Workaround for upstream docker bug and multiple COPY cmds
500 # https://github.com/moby/moby/issues/37965
501 copy_cmds += "RUN true\n"
502
503 return copy_cmds
504
505 def _df_build(self) -> str:
506 """Formulate the Dockerfile snippet necessary to download, build, and
507 install a package into a Docker stage.
508 """
509
510 # Download and extract source.
511 result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && "
512
513 # Handle 'custom_post_dl' commands.
514 custom_post_dl = self.pkg_def.get("custom_post_dl")
515 if custom_post_dl:
516 result += " && ".join(custom_post_dl) + " && "
517
518 # Build and install package based on 'build_type'.
519 build_type = self.pkg_def["build_type"]
520 if build_type == "autoconf":
521 result += self._cmd_build_autoconf()
522 elif build_type == "cmake":
523 result += self._cmd_build_cmake()
524 elif build_type == "custom":
525 result += self._cmd_build_custom()
526 elif build_type == "make":
527 result += self._cmd_build_make()
528 elif build_type == "meson":
529 result += self._cmd_build_meson()
530 else:
531 raise NotImplementedError(
532 f"Unhandled build type for {self.package}: {build_type}"
533 )
534
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600535 # Handle 'custom_post_install' commands.
536 custom_post_install = self.pkg_def.get("custom_post_install")
537 if custom_post_install:
538 result += " && " + " && ".join(custom_post_install)
539
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600540 return result
541
542 def _cmd_build_autoconf(self) -> str:
543 options = " ".join(self.pkg_def.get("config_flags", []))
544 env = " ".join(self.pkg_def.get("config_env", []))
545 result = "./bootstrap.sh && "
546 result += f"{env} ./configure {configure_flags} {options} && "
547 result += f"make -j{proc_count} && make install"
548 return result
549
550 def _cmd_build_cmake(self) -> str:
551 options = " ".join(self.pkg_def.get("config_flags", []))
552 env = " ".join(self.pkg_def.get("config_env", []))
553 result = "mkdir builddir && cd builddir && "
554 result += f"{env} cmake {cmake_flags} {options} .. && "
555 result += "cmake --build . --target all && "
556 result += "cmake --build . --target install && "
557 result += "cd .."
558 return result
559
560 def _cmd_build_custom(self) -> str:
561 return " && ".join(self.pkg_def.get("build_steps", []))
562
563 def _cmd_build_make(self) -> str:
564 return f"make -j{proc_count} && make install"
565
566 def _cmd_build_meson(self) -> str:
567 options = " ".join(self.pkg_def.get("config_flags", []))
568 env = " ".join(self.pkg_def.get("config_env", []))
569 result = f"{env} meson builddir {meson_flags} {options} && "
570 result += "ninja -C builddir && ninja -C builddir install"
571 return result
572
573
574class Docker:
575 """Class to assist with Docker interactions. All methods are static."""
576
577 @staticmethod
578 def timestamp() -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500579 """Generate a timestamp for today using the ISO week."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600580 today = date.today().isocalendar()
581 return f"{today[0]}-W{today[1]:02}"
582
583 @staticmethod
Patrick Williams41d86212022-11-25 18:28:43 -0600584 def tagname(pkgname: Optional[str], dockerfile: str) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500585 """Generate a tag name for a package using a hash of the Dockerfile."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600586 result = docker_image_name
587 if pkgname:
588 result += "-" + pkgname
589
590 result += ":" + Docker.timestamp()
591 result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16]
592
593 return result
594
595 @staticmethod
596 def build(pkg: str, tag: str, dockerfile: str) -> None:
Andrew Geissler22e61102023-02-14 14:44:00 -0600597 """Build a docker image using the Dockerfile and tagging it with 'tag'."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600598
599 # If we're not forcing builds, check if it already exists and skip.
600 if not force_build:
601 if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500602 print(
603 f"Image {tag} already exists. Skipping.", file=sys.stderr
604 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600605 return
606
607 # Build it.
608 # Capture the output of the 'docker build' command and send it to
609 # stderr (prefixed with the package name). This allows us to see
610 # progress but not polute stdout. Later on we output the final
611 # docker tag to stdout and we want to keep that pristine.
612 #
613 # Other unusual flags:
614 # --no-cache: Bypass the Docker cache if 'force_build'.
615 # --force-rm: Clean up Docker processes if they fail.
616 docker.build(
617 proxy_args,
618 "--network=host",
619 "--force-rm",
620 "--no-cache=true" if force_build else "--no-cache=false",
621 "-t",
622 tag,
623 "-",
624 _in=dockerfile,
625 _out=(
626 lambda line: print(
627 pkg + ":", line, end="", file=sys.stderr, flush=True
628 )
629 ),
630 )
631
632
633# Read a bunch of environment variables.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500634docker_image_name = os.environ.get(
635 "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test"
636)
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600637force_build = os.environ.get("FORCE_DOCKER_BUILD")
638is_automated_ci_build = os.environ.get("BUILD_URL", False)
Patrick Williams5b08dc62022-09-27 16:36:57 -0500639distro = os.environ.get("DISTRO", "ubuntu:kinetic")
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600640branch = os.environ.get("BRANCH", "master")
641ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
642http_proxy = os.environ.get("http_proxy")
643
Patrick Williams65b21fb2021-02-12 21:21:14 -0600644gerrit_project = os.environ.get("GERRIT_PROJECT")
645gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION")
646
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600647# Ensure appropriate docker build output to see progress and identify
648# any issues
649os.environ["BUILDKIT_PROGRESS"] = "plain"
650
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600651# Set up some common variables.
652username = os.environ.get("USER", "root")
653homedir = os.environ.get("HOME", "/root")
654gid = os.getgid()
655uid = os.getuid()
656
Josh Lehan6825a012022-03-17 18:31:39 -0700657# Use well-known constants if user is root
658if username == "root":
659 homedir = "/root"
660 gid = 0
661 uid = 0
662
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600663# Determine the architecture for Docker.
664arch = uname("-m").strip()
665if arch == "ppc64le":
666 docker_base = "ppc64le/"
667elif arch == "x86_64":
668 docker_base = ""
Thang Q. Nguyen051b05b2021-12-10 08:30:35 +0000669elif arch == "aarch64":
Thang Q. Nguyenf98f1a82021-12-22 01:59:19 +0000670 docker_base = "arm64v8/"
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600671else:
672 print(
673 f"Unsupported system architecture({arch}) found for docker image",
674 file=sys.stderr,
675 )
676 sys.exit(1)
677
Patrick Williams02871c92021-02-01 20:57:19 -0600678# Special flags if setting up a deb mirror.
679mirror = ""
680if "ubuntu" in distro and ubuntu_mirror:
681 mirror = f"""
Patrick Williamse08ffba2022-12-05 10:33:46 -0600682RUN echo "deb {ubuntu_mirror} \
683 $(. /etc/os-release && echo $VERSION_CODENAME) \
684 main restricted universe multiverse" > /etc/apt/sources.list && \\
685 echo "deb {ubuntu_mirror} \
686 $(. /etc/os-release && echo $VERSION_CODENAME)-updates \
687 main restricted universe multiverse" >> /etc/apt/sources.list && \\
688 echo "deb {ubuntu_mirror} \
689 $(. /etc/os-release && echo $VERSION_CODENAME)-security \
690 main restricted universe multiverse" >> /etc/apt/sources.list && \\
691 echo "deb {ubuntu_mirror} \
692 $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \
693 main restricted universe multiverse" >> /etc/apt/sources.list && \\
694 echo "deb {ubuntu_mirror} \
695 $(. /etc/os-release && echo $VERSION_CODENAME)-backports \
696 main restricted universe multiverse" >> /etc/apt/sources.list
Patrick Williams02871c92021-02-01 20:57:19 -0600697"""
698
699# Special flags for proxying.
700proxy_cmd = ""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200701proxy_keyserver = ""
Patrick Williams02871c92021-02-01 20:57:19 -0600702proxy_args = []
703if http_proxy:
704 proxy_cmd = f"""
705RUN echo "[http]" >> {homedir}/.gitconfig && \
706 echo "proxy = {http_proxy}" >> {homedir}/.gitconfig
707"""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200708 proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}"
709
Patrick Williams02871c92021-02-01 20:57:19 -0600710 proxy_args.extend(
711 [
712 "--build-arg",
713 f"http_proxy={http_proxy}",
714 "--build-arg",
Lei YUd461cd62021-02-18 14:25:49 +0800715 f"https_proxy={http_proxy}",
Patrick Williams02871c92021-02-01 20:57:19 -0600716 ]
717 )
718
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600719# Create base Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600720dockerfile_base = f"""
721FROM {docker_base}{distro}
Patrick Williams02871c92021-02-01 20:57:19 -0600722
723{mirror}
724
725ENV DEBIAN_FRONTEND noninteractive
726
Patrick Williams8949d3c2022-04-27 16:41:27 -0500727ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
Patrick Williams02871c92021-02-01 20:57:19 -0600728
Patrick Williamsbb16ac12021-04-12 12:23:51 -0500729# Sometimes the ubuntu key expires and we need a way to force an execution
730# of the apt-get commands for the dbgsym-keyring. When this happens we see
731# an error like: "Release: The following signatures were invalid:"
732# Insert a bogus echo that we can change here when we get this error to force
733# the update.
734RUN echo "ubuntu keyserver rev as of 2021-04-21"
735
Patrick Williams02871c92021-02-01 20:57:19 -0600736# We need the keys to be imported for dbgsym repos
737# New releases have a package, older ones fall back to manual fetching
738# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
Patrick Williams50837432021-02-06 12:24:05 -0600739RUN apt-get update && apt-get dist-upgrade -yy && \
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500740 ( apt-get install gpgv ubuntu-dbgsym-keyring || \
Patrick Williams50837432021-02-06 12:24:05 -0600741 ( apt-get install -yy dirmngr && \
742 apt-key adv --keyserver keyserver.ubuntu.com \
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200743 {proxy_keyserver} \
Patrick Williams50837432021-02-06 12:24:05 -0600744 --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
Patrick Williams02871c92021-02-01 20:57:19 -0600745
746# Parse the current repo list into a debug repo list
Patrick Williamse08ffba2022-12-05 10:33:46 -0600747RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \
748 /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600749
750# Remove non-existent debug repos
Patrick Williams41d86212022-11-25 18:28:43 -0600751RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600752
753RUN cat /etc/apt/sources.list.d/debug.list
754
755RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Patrick Williams02871c92021-02-01 20:57:19 -0600756 autoconf \
757 autoconf-archive \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600758 bison \
Patrick Williams27a646b2022-09-27 16:57:44 -0500759 clang-15 \
760 clang-format-15 \
761 clang-tidy-15 \
762 clang-tools-15 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600763 cmake \
764 curl \
765 dbus \
766 device-tree-compiler \
767 flex \
768 g++-12 \
769 gcc-12 \
770 git \
Patrick Williams02871c92021-02-01 20:57:19 -0600771 iproute2 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600772 iputils-ping \
Manojkiran Eda524a3312023-04-05 15:37:47 +0530773 libaudit-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600774 libc6-dbg \
775 libc6-dev \
776 libconfig++-dev \
777 libcryptsetup-dev \
778 libdbus-1-dev \
779 libevdev-dev \
780 libgpiod-dev \
781 libi2c-dev \
782 libjpeg-dev \
783 libjson-perl \
784 libldap2-dev \
785 libmimetic-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600786 libnl-3-dev \
787 libnl-genl-3-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600788 libpam0g-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600789 libpciaccess-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600790 libperlio-gzip-perl \
791 libpng-dev \
792 libprotobuf-dev \
793 libsnmp-dev \
794 libssl-dev \
795 libsystemd-dev \
796 libtool \
797 liburing2-dbgsym \
798 liburing-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600799 libxml2-utils \
Patrick Williams0eedeed2021-02-06 19:06:09 -0600800 libxml-simple-perl \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600801 ninja-build \
802 npm \
803 pkg-config \
804 protobuf-compiler \
805 python3 \
806 python3-dev\
807 python3-git \
808 python3-mako \
809 python3-pip \
810 python3-setuptools \
811 python3-socks \
812 python3-yaml \
John Wedig9adf68d2021-11-16 14:00:39 -0800813 rsync \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600814 shellcheck \
815 sudo \
816 systemd \
817 valgrind \
818 valgrind-dbg \
Andrew Geisslerb565f822022-12-14 11:43:25 -0600819 vim \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600820 wget \
821 xxd
Patrick Williams02871c92021-02-01 20:57:19 -0600822
Patrick Williams5b08dc62022-09-27 16:36:57 -0500823# Kinetic comes with GCC-12, so skip this.
824#RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 \
825# --slave /usr/bin/g++ g++ /usr/bin/g++-12 \
826# --slave /usr/bin/gcov gcov /usr/bin/gcov-12 \
827# --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-12 \
828# --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-12
829#RUN update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-12 12
Patrick Williams02871c92021-02-01 20:57:19 -0600830
Patrick Williams27a646b2022-09-27 16:57:44 -0500831RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 1000 \
832 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-15 \
833 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-15 \
834 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-15 \
Patrick Williamse08ffba2022-12-05 10:33:46 -0600835 --slave /usr/bin/run-clang-tidy run-clang-tidy.py \
836 /usr/bin/run-clang-tidy-15 \
Patrick Williams27a646b2022-09-27 16:57:44 -0500837 --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-15
Patrick Williams02871c92021-02-01 20:57:19 -0600838
Patrick Williams50837432021-02-06 12:24:05 -0600839"""
840
841if is_automated_ci_build:
842 dockerfile_base += f"""
843# Run an arbitrary command to polute the docker cache regularly force us
844# to re-run `apt-get update` daily.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600845RUN echo {Docker.timestamp()}
Patrick Williams50837432021-02-06 12:24:05 -0600846RUN apt-get update && apt-get dist-upgrade -yy
847
848"""
849
Patrick Williams41d86212022-11-25 18:28:43 -0600850dockerfile_base += """
Patrick Williamsc5969592022-12-06 09:50:25 -0600851RUN pip3 install beautysh
Patrick Williamse795dfe2022-12-06 10:07:02 -0600852RUN pip3 install black
Patrick Williamsbc0d5a32022-12-05 16:26:00 -0600853RUN pip3 install codespell
Patrick Williamsc5ad7ff2022-12-05 10:21:40 -0600854RUN pip3 install flake8
Patrick Williamsbc0d5a32022-12-05 16:26:00 -0600855RUN pip3 install gitlint
Patrick Williams02871c92021-02-01 20:57:19 -0600856RUN pip3 install inflection
Patrick Williamse795dfe2022-12-06 10:07:02 -0600857RUN pip3 install isort
Patrick Williams02871c92021-02-01 20:57:19 -0600858RUN pip3 install jsonschema
Michael Shenfb612a52022-08-05 00:58:31 +0000859RUN pip3 install meson==0.63.0
Patrick Williams02871c92021-02-01 20:57:19 -0600860RUN pip3 install protobuf
Ed Tanousca8c4a82022-02-08 13:58:22 -0800861RUN pip3 install requests
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600862
863RUN npm install -g \
864 eslint@latest eslint-plugin-json@latest \
Patrick Williams7d41f6d2022-12-06 10:19:43 -0600865 markdownlint-cli@latest \
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600866 prettier@latest
Ed Tanousfb9948a2022-06-21 09:10:24 -0700867"""
868
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600869# Build the base and stage docker images.
870docker_base_img_name = Docker.tagname("base", dockerfile_base)
871Docker.build("base", docker_base_img_name, dockerfile_base)
872Package.generate_all()
Patrick Williams02871c92021-02-01 20:57:19 -0600873
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600874# Create the final Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600875dockerfile = f"""
Patrick Williams02871c92021-02-01 20:57:19 -0600876# Build the final output image
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600877FROM {docker_base_img_name}
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600878{Package.df_all_copycmds()}
Patrick Williams02871c92021-02-01 20:57:19 -0600879
880# Some of our infrastructure still relies on the presence of this file
881# even though it is no longer needed to rebuild the docker environment
882# NOTE: The file is sorted to ensure the ordering is stable.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600883RUN echo '{Package.depcache()}' > /tmp/depcache
Patrick Williams02871c92021-02-01 20:57:19 -0600884
885# Final configuration for the workspace
Josh Lehan6825a012022-03-17 18:31:39 -0700886RUN grep -q {gid} /etc/group || groupadd -f -g {gid} {username}
Patrick Williams02871c92021-02-01 20:57:19 -0600887RUN mkdir -p "{os.path.dirname(homedir)}"
Patrick Williamse08ffba2022-12-05 10:33:46 -0600888RUN grep -q {uid} /etc/passwd || \
889 useradd -d {homedir} -m -u {uid} -g {gid} {username}
Patrick Williams02871c92021-02-01 20:57:19 -0600890RUN sed -i '1iDefaults umask=000' /etc/sudoers
891RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
892
Andrew Geissler305a9a52021-04-07 11:08:40 -0500893# Ensure user has ability to write to /usr/local for different tool
894# and data installs
Andrew Geissler7bb00b12021-05-10 15:12:08 -0500895RUN chown -R {username}:{username} /usr/local/share
Andrew Geissler305a9a52021-04-07 11:08:40 -0500896
Patrick Williams02871c92021-02-01 20:57:19 -0600897{proxy_cmd}
898
899RUN /bin/bash
900"""
901
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600902# Do the final docker build
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600903docker_final_img_name = Docker.tagname(None, dockerfile)
904Docker.build("final", docker_final_img_name, dockerfile)
905
Patrick Williams00536fb2021-02-11 14:28:49 -0600906# Print the tag of the final image.
907print(docker_final_img_name)