102871c91SPatrick Williams#!/usr/bin/env python3 202871c91SPatrick Williams# 302871c91SPatrick Williams# Build the required docker image to run package unit tests 402871c91SPatrick Williams# 502871c91SPatrick Williams# Script Variables: 602871c91SPatrick Williams# DOCKER_IMG_NAME: <optional, the name of the docker image to generate> 702871c91SPatrick Williams# default is openbmc/ubuntu-unit-test 802871c91SPatrick Williams# DISTRO: <optional, the distro to build a docker image against> 950837436SPatrick Williams# FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker 1050837436SPatrick Williams# images to be rebuilt rather than reusing caches.> 1150837436SPatrick Williams# BUILD_URL: <optional, used to detect running under CI context 1250837436SPatrick Williams# (ex. Jenkins)> 1302871c91SPatrick Williams# BRANCH: <optional, branch to build from each of the openbmc/ 1402871c91SPatrick Williams# repositories> 1502871c91SPatrick Williams# default is master, which will be used if input branch not 1602871c91SPatrick Williams# provided or not found 1702871c91SPatrick Williams# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the 1802871c91SPatrick Williams# default ones in /etc/apt/sources.list> 1902871c91SPatrick Williams# default is empty, and no mirror is used. 20fe2768c7SAndrew Geissler# DOCKER_REG: <optional, the URL of a docker registry to utilize 2123ec3323SAndrew Geissler# instead of our default (public.ecr.aws/ubuntu) 2223ec3323SAndrew Geissler# (ex. docker.io) 2302871c91SPatrick Williams# http_proxy The HTTP address of the proxy server to connect to. 2402871c91SPatrick Williams# Default: "", proxy is not setup if this is not set 2502871c91SPatrick Williams 26276bd0e2SPatrick Williamsimport json 2702871c91SPatrick Williamsimport os 28f3d27e64SAndrew Geisslerimport re 2902871c91SPatrick Williamsimport sys 30b16f3e20SPatrick Williamsimport threading 31276bd0e2SPatrick Williamsimport urllib.request 32a18d9c57SPatrick Williamsfrom datetime import date 33a18d9c57SPatrick Williamsfrom hashlib import sha256 34e08ffba8SPatrick Williams 35e08ffba8SPatrick Williams# typing.Dict is used for type-hints. 36e08ffba8SPatrick Williamsfrom typing import Any, Callable, Dict, Iterable, Optional # noqa: F401 3702871c91SPatrick Williams 388f7146faSAndrew Geisslerfrom sh import git, nproc # type: ignore 398f7146faSAndrew Geissler 408f7146faSAndrew Geisslertry: 418f7146faSAndrew Geissler # System may have docker or it may have podman, try docker first 428f7146faSAndrew Geissler from sh import docker 438f7146faSAndrew Geissler 448f7146faSAndrew Geissler container = docker 458f7146faSAndrew Geisslerexcept ImportError: 468f7146faSAndrew Geissler try: 478f7146faSAndrew Geissler from sh import podman 488f7146faSAndrew Geissler 498f7146faSAndrew Geissler container = podman 508f7146faSAndrew Geissler except Exception: 518f7146faSAndrew Geissler print("No docker or podman found on system") 528f7146faSAndrew Geissler exit(1) 5341d86218SPatrick Williams 54ee3c9eebSPatrick Williamstry: 55ee3c9eebSPatrick Williams # Python before 3.8 doesn't have TypedDict, so reroute to standard 'dict'. 56ee3c9eebSPatrick Williams from typing import TypedDict 5741d86218SPatrick Williamsexcept Exception: 58ee3c9eebSPatrick Williams 59ee3c9eebSPatrick Williams class TypedDict(dict): # type: ignore 60ee3c9eebSPatrick Williams # We need to do this to eat the 'total' argument. 6141d86218SPatrick Williams def __init_subclass__(cls, **kwargs: Any) -> None: 62ee3c9eebSPatrick Williams super().__init_subclass__() 63ee3c9eebSPatrick Williams 64ee3c9eebSPatrick Williams 65ee3c9eebSPatrick Williams# Declare some variables used in package definitions. 66aae36d18SPatrick Williamsprefix = "/usr/local" 6702871c91SPatrick Williamsproc_count = nproc().strip() 6802871c91SPatrick Williams 69ee3c9eebSPatrick Williams 70ee3c9eebSPatrick Williamsclass PackageDef(TypedDict, total=False): 71ee3c9eebSPatrick Williams """Package Definition for packages dictionary.""" 72ee3c9eebSPatrick Williams 73ee3c9eebSPatrick Williams # rev [optional]: Revision of package to use. 74ee3c9eebSPatrick Williams rev: str 75ee3c9eebSPatrick Williams # url [optional]: lambda function to create URL: (package, rev) -> url. 76ee3c9eebSPatrick Williams url: Callable[[str, str], str] 77ee3c9eebSPatrick Williams # depends [optional]: List of package dependencies. 78ee3c9eebSPatrick Williams depends: Iterable[str] 79ee3c9eebSPatrick Williams # build_type [required]: Build type used for package. 80ee3c9eebSPatrick Williams # Currently supported: autoconf, cmake, custom, make, meson 81ee3c9eebSPatrick Williams build_type: str 82ee3c9eebSPatrick Williams # build_steps [optional]: Steps to run for 'custom' build_type. 83ee3c9eebSPatrick Williams build_steps: Iterable[str] 84ee3c9eebSPatrick Williams # config_flags [optional]: List of options to pass configuration tool. 85ee3c9eebSPatrick Williams config_flags: Iterable[str] 86ee3c9eebSPatrick Williams # config_env [optional]: List of environment variables to set for config. 87ee3c9eebSPatrick Williams config_env: Iterable[str] 88ee3c9eebSPatrick Williams # custom_post_dl [optional]: List of steps to run after download, but 89ee3c9eebSPatrick Williams # before config / build / install. 90ee3c9eebSPatrick Williams custom_post_dl: Iterable[str] 916bce2ca1SPatrick Williams # custom_post_install [optional]: List of steps to run after install. 926bce2ca1SPatrick Williams custom_post_install: Iterable[str] 93ee3c9eebSPatrick Williams 94ee3c9eebSPatrick Williams # __tag [private]: Generated Docker tag name for package stage. 95ee3c9eebSPatrick Williams __tag: str 96ee3c9eebSPatrick Williams # __package [private]: Package object associated with this package. 97ee3c9eebSPatrick Williams __package: Any # Type is Package, but not defined yet. 98ee3c9eebSPatrick Williams 9902871c91SPatrick Williams 1007204324cSPatrick Williams# Packages to include in image. 1017204324cSPatrick Williamspackages = { 102ee3c9eebSPatrick Williams "boost": PackageDef( 1039698215eSJayanth Othayoth rev="1.86.0", 104ee3c9eebSPatrick Williams url=( 1059698215eSJayanth Othayoth lambda pkg, rev: f"https://github.com/boostorg/{pkg}/releases/download/{pkg}-{rev}/{pkg}-{rev}-cmake.tar.gz" 1062abc4a48SPatrick Williams ), 107ee3c9eebSPatrick Williams build_type="custom", 108ee3c9eebSPatrick Williams build_steps=[ 109e08ffba8SPatrick Williams ( 110e08ffba8SPatrick Williams "./bootstrap.sh" 1119698215eSJayanth Othayoth f" --prefix={prefix} --with-libraries=atomic,context,coroutine,filesystem,process,url" 112e08ffba8SPatrick Williams ), 113aae36d18SPatrick Williams "./b2", 11404770ccdSMichal Orzel f"./b2 install --prefix={prefix} valgrind=on", 115aae36d18SPatrick Williams ], 116ee3c9eebSPatrick Williams ), 117ee3c9eebSPatrick Williams "USCiLab/cereal": PackageDef( 118c1977839SPatrick Williams rev="v1.3.2", 119ee3c9eebSPatrick Williams build_type="custom", 120ee3c9eebSPatrick Williams build_steps=[f"cp -a include/cereal/ {prefix}/include/"], 121ee3c9eebSPatrick Williams ), 122c7198558SEd Tanous "danmar/cppcheck": PackageDef( 12351021786SPatrick Williams rev="2.12.1", 124c7198558SEd Tanous build_type="cmake", 125c7198558SEd Tanous ), 126ee3c9eebSPatrick Williams "CLIUtils/CLI11": PackageDef( 127fc39733aSPatrick Williams rev="v2.3.2", 128ee3c9eebSPatrick Williams build_type="cmake", 129ee3c9eebSPatrick Williams config_flags=[ 130aae36d18SPatrick Williams "-DBUILD_TESTING=OFF", 131aae36d18SPatrick Williams "-DCLI11_BUILD_DOCS=OFF", 132aae36d18SPatrick Williams "-DCLI11_BUILD_EXAMPLES=OFF", 133aae36d18SPatrick Williams ], 134ee3c9eebSPatrick Williams ), 135ee3c9eebSPatrick Williams "fmtlib/fmt": PackageDef( 136c061e07bSPatrick Williams rev="10.1.1", 137ee3c9eebSPatrick Williams build_type="cmake", 138ee3c9eebSPatrick Williams config_flags=[ 139aae36d18SPatrick Williams "-DFMT_DOC=OFF", 140aae36d18SPatrick Williams "-DFMT_TEST=OFF", 141aae36d18SPatrick Williams ], 142ee3c9eebSPatrick Williams ), 143ee3c9eebSPatrick Williams "Naios/function2": PackageDef( 144cb09974cSPatrick Williams rev="4.2.4", 145ee3c9eebSPatrick Williams build_type="custom", 146ee3c9eebSPatrick Williams build_steps=[ 147aae36d18SPatrick Williams f"mkdir {prefix}/include/function2", 148aae36d18SPatrick Williams f"cp include/function2/function2.hpp {prefix}/include/function2/", 149aae36d18SPatrick Williams ], 150ee3c9eebSPatrick Williams ), 151ee3c9eebSPatrick Williams "google/googletest": PackageDef( 152d11e9c75SPatrick Williams rev="v1.15.2", 153ee3c9eebSPatrick Williams build_type="cmake", 1544dd32c02SWilliam A. Kennington III config_env=["CXXFLAGS=-std=c++20"], 155ee3c9eebSPatrick Williams config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"], 156ee3c9eebSPatrick Williams ), 157178b4b29SEd Tanous "nghttp2/nghttp2": PackageDef( 158abb106a9SEd Tanous rev="v1.61.0", 159178b4b29SEd Tanous build_type="cmake", 160178b4b29SEd Tanous config_env=["CXXFLAGS=-std=c++20"], 161178b4b29SEd Tanous config_flags=[ 162178b4b29SEd Tanous "-DENABLE_LIB_ONLY=ON", 163178b4b29SEd Tanous "-DENABLE_STATIC_LIB=ON", 164178b4b29SEd Tanous ], 165178b4b29SEd Tanous ), 166ee3c9eebSPatrick Williams "nlohmann/json": PackageDef( 167c1977839SPatrick Williams rev="v3.11.2", 1686bce2ca1SPatrick Williams build_type="cmake", 1696bce2ca1SPatrick Williams config_flags=["-DJSON_BuildTests=OFF"], 1706bce2ca1SPatrick Williams custom_post_install=[ 171e08ffba8SPatrick Williams ( 172e08ffba8SPatrick Williams f"ln -s {prefix}/include/nlohmann/json.hpp" 173e08ffba8SPatrick Williams f" {prefix}/include/json.hpp" 174e08ffba8SPatrick Williams ), 175aae36d18SPatrick Williams ], 176ee3c9eebSPatrick Williams ), 177058e3a34SPrzemyslaw Czarnowski "json-c/json-c": PackageDef( 178eee65beeSPatrick Williams rev="json-c-0.17-20230812", 179058e3a34SPrzemyslaw Czarnowski build_type="cmake", 180058e3a34SPrzemyslaw Czarnowski ), 181ee3c9eebSPatrick Williams "LibVNC/libvncserver": PackageDef( 182c042132cSPatrick Williams rev="LibVNCServer-0.9.14", 183ee3c9eebSPatrick Williams build_type="cmake", 184ee3c9eebSPatrick Williams ), 185ee3c9eebSPatrick Williams "leethomason/tinyxml2": PackageDef( 186c1977839SPatrick Williams rev="9.0.0", 187ee3c9eebSPatrick Williams build_type="cmake", 188ee3c9eebSPatrick Williams ), 189ee3c9eebSPatrick Williams "tristanpenman/valijson": PackageDef( 1905a2c113cSPatrick Williams rev="v1.0.1", 191ee3c9eebSPatrick Williams build_type="cmake", 192ee3c9eebSPatrick Williams config_flags=[ 1930eedeedaSPatrick Williams "-Dvalijson_BUILD_TESTS=0", 1940eedeedaSPatrick Williams "-Dvalijson_INSTALL_HEADERS=1", 195aae36d18SPatrick Williams ], 196ee3c9eebSPatrick Williams ), 197ee3c9eebSPatrick Williams "open-power/pdbg": PackageDef(build_type="autoconf"), 198ee3c9eebSPatrick Williams "openbmc/gpioplus": PackageDef( 199ee3c9eebSPatrick Williams build_type="meson", 200ee3c9eebSPatrick Williams config_flags=[ 201aae36d18SPatrick Williams "-Dexamples=false", 202aae36d18SPatrick Williams "-Dtests=disabled", 203aae36d18SPatrick Williams ], 204ee3c9eebSPatrick Williams ), 205ee3c9eebSPatrick Williams "openbmc/phosphor-dbus-interfaces": PackageDef( 206ee3c9eebSPatrick Williams depends=["openbmc/sdbusplus"], 207ee3c9eebSPatrick Williams build_type="meson", 2084fe87776SWilliam A. Kennington III config_flags=["-Dgenerate_md=false"], 209ee3c9eebSPatrick Williams ), 210ee3c9eebSPatrick Williams "openbmc/phosphor-logging": PackageDef( 211ee3c9eebSPatrick Williams depends=[ 21283394610SPatrick Williams "USCiLab/cereal", 21383394610SPatrick Williams "openbmc/phosphor-dbus-interfaces", 21483394610SPatrick Williams "openbmc/sdbusplus", 21583394610SPatrick Williams "openbmc/sdeventplus", 216aae36d18SPatrick Williams ], 217f79ce4c4SPatrick Williams build_type="meson", 218ee3c9eebSPatrick Williams config_flags=[ 2196c98f280SWilliam A. Kennington III "-Dlibonly=true", 2206c98f280SWilliam A. Kennington III "-Dtests=disabled", 221aae36d18SPatrick Williams ], 222ee3c9eebSPatrick Williams ), 223ee3c9eebSPatrick Williams "openbmc/phosphor-objmgr": PackageDef( 224ee3c9eebSPatrick Williams depends=[ 22511e5762cSBrad Bishop "CLIUtils/CLI11", 22670af95caSPatrick Williams "boost", 22783394610SPatrick Williams "leethomason/tinyxml2", 22870af95caSPatrick Williams "openbmc/phosphor-dbus-interfaces", 22983394610SPatrick Williams "openbmc/phosphor-logging", 23083394610SPatrick Williams "openbmc/sdbusplus", 231aae36d18SPatrick Williams ], 2321197e359SBrad Bishop build_type="meson", 2331197e359SBrad Bishop config_flags=[ 2341197e359SBrad Bishop "-Dtests=disabled", 2351197e359SBrad Bishop ], 236ee3c9eebSPatrick Williams ), 237c02ff271SJason M. Bills "openbmc/libpeci": PackageDef( 238c02ff271SJason M. Bills build_type="meson", 239c02ff271SJason M. Bills config_flags=[ 240c02ff271SJason M. Bills "-Draw-peci=disabled", 241c02ff271SJason M. Bills ], 242c02ff271SJason M. Bills ), 2431c19e453SManojkiran Eda "openbmc/libpldm": PackageDef( 244ee3c9eebSPatrick Williams build_type="meson", 24529163971SAndrew Jeffery config_flags=[ 24629163971SAndrew Jeffery "-Dabi=deprecated,stable", 24729163971SAndrew Jeffery "-Dtests=false", 24829163971SAndrew Jeffery "-Dabi-compliance-check=false", 24929163971SAndrew Jeffery ], 250ee3c9eebSPatrick Williams ), 251ee3c9eebSPatrick Williams "openbmc/sdbusplus": PackageDef( 25254d01da4SPatrick Williams depends=[ 25354d01da4SPatrick Williams "nlohmann/json", 25454d01da4SPatrick Williams ], 255ee3c9eebSPatrick Williams build_type="meson", 256ee3c9eebSPatrick Williams custom_post_dl=[ 257aae36d18SPatrick Williams "cd tools", 258aae36d18SPatrick Williams f"./setup.py install --root=/ --prefix={prefix}", 259aae36d18SPatrick Williams "cd ..", 260aae36d18SPatrick Williams ], 261ee3c9eebSPatrick Williams config_flags=[ 262aae36d18SPatrick Williams "-Dexamples=disabled", 263aae36d18SPatrick Williams "-Dtests=disabled", 264aae36d18SPatrick Williams ], 265b16f3e20SPatrick Williams ), 266ee3c9eebSPatrick Williams "openbmc/sdeventplus": PackageDef( 26770af95caSPatrick Williams depends=[ 26870af95caSPatrick Williams "openbmc/stdplus", 26970af95caSPatrick Williams ], 270ee3c9eebSPatrick Williams build_type="meson", 271ee3c9eebSPatrick Williams config_flags=[ 272ee3c9eebSPatrick Williams "-Dexamples=false", 273ee3c9eebSPatrick Williams "-Dtests=disabled", 274ee3c9eebSPatrick Williams ], 275ee3c9eebSPatrick Williams ), 276ee3c9eebSPatrick Williams "openbmc/stdplus": PackageDef( 27770af95caSPatrick Williams depends=[ 27870af95caSPatrick Williams "fmtlib/fmt", 279ca1bf0c0SWilliam A. Kennington III "google/googletest", 280ca1bf0c0SWilliam A. Kennington III "Naios/function2", 28170af95caSPatrick Williams ], 282ee3c9eebSPatrick Williams build_type="meson", 283ee3c9eebSPatrick Williams config_flags=[ 284ee3c9eebSPatrick Williams "-Dexamples=false", 285ee3c9eebSPatrick Williams "-Dtests=disabled", 286ca1bf0c0SWilliam A. Kennington III "-Dgtest=enabled", 287ee3c9eebSPatrick Williams ], 288ee3c9eebSPatrick Williams ), 289ee3c9eebSPatrick Williams} # type: Dict[str, PackageDef] 29002871c91SPatrick Williams 29102871c91SPatrick Williams# Define common flags used for builds 29202871c91SPatrick Williamsconfigure_flags = " ".join( 29302871c91SPatrick Williams [ 29402871c91SPatrick Williams f"--prefix={prefix}", 29502871c91SPatrick Williams ] 29602871c91SPatrick Williams) 29702871c91SPatrick Williamscmake_flags = " ".join( 29802871c91SPatrick Williams [ 29902871c91SPatrick Williams "-DBUILD_SHARED_LIBS=ON", 3000f2086b3SPatrick Williams "-DCMAKE_BUILD_TYPE=RelWithDebInfo", 30102871c91SPatrick Williams f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}", 3020f2086b3SPatrick Williams "-GNinja", 3030f2086b3SPatrick Williams "-DCMAKE_MAKE_PROGRAM=ninja", 30402871c91SPatrick Williams ] 30502871c91SPatrick Williams) 30602871c91SPatrick Williamsmeson_flags = " ".join( 30702871c91SPatrick Williams [ 30802871c91SPatrick Williams "--wrap-mode=nodownload", 30902871c91SPatrick Williams f"-Dprefix={prefix}", 31002871c91SPatrick Williams ] 31102871c91SPatrick Williams) 31202871c91SPatrick Williams 313ee3c9eebSPatrick Williams 314ee3c9eebSPatrick Williamsclass Package(threading.Thread): 315ee3c9eebSPatrick Williams """Class used to build the Docker stages for each package. 316ee3c9eebSPatrick Williams 317ee3c9eebSPatrick Williams Generally, this class should not be instantiated directly but through 318ee3c9eebSPatrick Williams Package.generate_all(). 319ee3c9eebSPatrick Williams """ 320ee3c9eebSPatrick Williams 321ee3c9eebSPatrick Williams # Copy the packages dictionary. 322ee3c9eebSPatrick Williams packages = packages.copy() 323ee3c9eebSPatrick Williams 324ee3c9eebSPatrick Williams # Lock used for thread-safety. 325ee3c9eebSPatrick Williams lock = threading.Lock() 326ee3c9eebSPatrick Williams 327ee3c9eebSPatrick Williams def __init__(self, pkg: str): 328ee3c9eebSPatrick Williams """pkg - The name of this package (ex. foo/bar )""" 329ee3c9eebSPatrick Williams super(Package, self).__init__() 330ee3c9eebSPatrick Williams 331ee3c9eebSPatrick Williams self.package = pkg 332ee3c9eebSPatrick Williams self.exception = None # type: Optional[Exception] 333ee3c9eebSPatrick Williams 334ee3c9eebSPatrick Williams # Reference to this package's 335ee3c9eebSPatrick Williams self.pkg_def = Package.packages[pkg] 336ee3c9eebSPatrick Williams self.pkg_def["__package"] = self 337ee3c9eebSPatrick Williams 338ee3c9eebSPatrick Williams def run(self) -> None: 339ee3c9eebSPatrick Williams """Thread 'run' function. Builds the Docker stage.""" 340ee3c9eebSPatrick Williams 341ee3c9eebSPatrick Williams # In case this package has no rev, fetch it from Github. 342ee3c9eebSPatrick Williams self._update_rev() 343ee3c9eebSPatrick Williams 344ee3c9eebSPatrick Williams # Find all the Package objects that this package depends on. 345ee3c9eebSPatrick Williams # This section is locked because we are looking into another 346ee3c9eebSPatrick Williams # package's PackageDef dict, which could be being modified. 347ee3c9eebSPatrick Williams Package.lock.acquire() 348ee3c9eebSPatrick Williams deps: Iterable[Package] = [ 349ee3c9eebSPatrick Williams Package.packages[deppkg]["__package"] 350ee3c9eebSPatrick Williams for deppkg in self.pkg_def.get("depends", []) 351ee3c9eebSPatrick Williams ] 352ee3c9eebSPatrick Williams Package.lock.release() 353ee3c9eebSPatrick Williams 354ee3c9eebSPatrick Williams # Wait until all the depends finish building. We need them complete 355ee3c9eebSPatrick Williams # for the "COPY" commands. 356ee3c9eebSPatrick Williams for deppkg in deps: 357ee3c9eebSPatrick Williams deppkg.join() 358ee3c9eebSPatrick Williams 359ee3c9eebSPatrick Williams # Generate this package's Dockerfile. 360ee3c9eebSPatrick Williams dockerfile = f""" 361ee3c9eebSPatrick WilliamsFROM {docker_base_img_name} 362ee3c9eebSPatrick Williams{self._df_copycmds()} 363ee3c9eebSPatrick Williams{self._df_build()} 364ee3c9eebSPatrick Williams""" 365ee3c9eebSPatrick Williams 366ee3c9eebSPatrick Williams # Generate the resulting tag name and save it to the PackageDef. 367ee3c9eebSPatrick Williams # This section is locked because we are modifying the PackageDef, 368ee3c9eebSPatrick Williams # which can be accessed by other threads. 369ee3c9eebSPatrick Williams Package.lock.acquire() 370ee3c9eebSPatrick Williams tag = Docker.tagname(self._stagename(), dockerfile) 371ee3c9eebSPatrick Williams self.pkg_def["__tag"] = tag 372ee3c9eebSPatrick Williams Package.lock.release() 373ee3c9eebSPatrick Williams 374ee3c9eebSPatrick Williams # Do the build / save any exceptions. 375ee3c9eebSPatrick Williams try: 376ee3c9eebSPatrick Williams Docker.build(self.package, tag, dockerfile) 377ee3c9eebSPatrick Williams except Exception as e: 378ee3c9eebSPatrick Williams self.exception = e 379ee3c9eebSPatrick Williams 380ee3c9eebSPatrick Williams @classmethod 381ee3c9eebSPatrick Williams def generate_all(cls) -> None: 382ee3c9eebSPatrick Williams """Ensure a Docker stage is created for all defined packages. 383ee3c9eebSPatrick Williams 384ee3c9eebSPatrick Williams These are done in parallel but with appropriate blocking per 385ee3c9eebSPatrick Williams package 'depends' specifications. 386ee3c9eebSPatrick Williams """ 387ee3c9eebSPatrick Williams 388ee3c9eebSPatrick Williams # Create a Package for each defined package. 389ee3c9eebSPatrick Williams pkg_threads = [Package(p) for p in cls.packages.keys()] 390ee3c9eebSPatrick Williams 391ee3c9eebSPatrick Williams # Start building them all. 3926dbd7807SPatrick Williams # This section is locked because threads depend on each other, 3936dbd7807SPatrick Williams # based on the packages, and they cannot 'join' on a thread 3946dbd7807SPatrick Williams # which is not yet started. Adding a lock here allows all the 3956dbd7807SPatrick Williams # threads to start before they 'join' their dependencies. 3966dbd7807SPatrick Williams Package.lock.acquire() 397ee3c9eebSPatrick Williams for t in pkg_threads: 398ee3c9eebSPatrick Williams t.start() 3996dbd7807SPatrick Williams Package.lock.release() 400ee3c9eebSPatrick Williams 401ee3c9eebSPatrick Williams # Wait for completion. 402ee3c9eebSPatrick Williams for t in pkg_threads: 403ee3c9eebSPatrick Williams t.join() 404ee3c9eebSPatrick Williams # Check if the thread saved off its own exception. 405ee3c9eebSPatrick Williams if t.exception: 406ee3c9eebSPatrick Williams print(f"Package {t.package} failed!", file=sys.stderr) 407ee3c9eebSPatrick Williams raise t.exception 408ee3c9eebSPatrick Williams 409ee3c9eebSPatrick Williams @staticmethod 410ee3c9eebSPatrick Williams def df_all_copycmds() -> str: 411ee3c9eebSPatrick Williams """Formulate the Dockerfile snippet necessary to copy all packages 412ee3c9eebSPatrick Williams into the final image. 413ee3c9eebSPatrick Williams """ 414ee3c9eebSPatrick Williams return Package.df_copycmds_set(Package.packages.keys()) 415ee3c9eebSPatrick Williams 416ee3c9eebSPatrick Williams @classmethod 417ee3c9eebSPatrick Williams def depcache(cls) -> str: 418ee3c9eebSPatrick Williams """Create the contents of the '/tmp/depcache'. 419ee3c9eebSPatrick Williams This file is a comma-separated list of "<pkg>:<rev>". 420ee3c9eebSPatrick Williams """ 421ee3c9eebSPatrick Williams 422ee3c9eebSPatrick Williams # This needs to be sorted for consistency. 423ee3c9eebSPatrick Williams depcache = "" 424ee3c9eebSPatrick Williams for pkg in sorted(cls.packages.keys()): 425ee3c9eebSPatrick Williams depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"]) 426ee3c9eebSPatrick Williams return depcache 427ee3c9eebSPatrick Williams 428276bd0e2SPatrick Williams def _check_gerrit_topic(self) -> bool: 429276bd0e2SPatrick Williams if not gerrit_topic: 430276bd0e2SPatrick Williams return False 431276bd0e2SPatrick Williams if not self.package.startswith("openbmc/"): 432276bd0e2SPatrick Williams return False 433276bd0e2SPatrick Williams if gerrit_project == self.package and gerrit_rev: 434276bd0e2SPatrick Williams return False 435276bd0e2SPatrick Williams 436276bd0e2SPatrick Williams try: 437276bd0e2SPatrick Williams commits = json.loads( 438276bd0e2SPatrick Williams urllib.request.urlopen( 439276bd0e2SPatrick Williams f"https://gerrit.openbmc.org/changes/?q=status:open+project:{self.package}+topic:{gerrit_topic}" 440276bd0e2SPatrick Williams ) 441276bd0e2SPatrick Williams .read() 442276bd0e2SPatrick Williams .splitlines()[-1] 443276bd0e2SPatrick Williams ) 444276bd0e2SPatrick Williams 445276bd0e2SPatrick Williams if len(commits) == 0: 446276bd0e2SPatrick Williams return False 447276bd0e2SPatrick Williams if len(commits) > 1: 448276bd0e2SPatrick Williams print( 449276bd0e2SPatrick Williams f"{self.package} has more than 1 commit under {gerrit_topic}; using lastest upstream: {len(commits)}", 450276bd0e2SPatrick Williams file=sys.stderr, 451276bd0e2SPatrick Williams ) 452276bd0e2SPatrick Williams return False 453276bd0e2SPatrick Williams 454276bd0e2SPatrick Williams change_id = commits[0]["id"] 455276bd0e2SPatrick Williams 456276bd0e2SPatrick Williams commit = json.loads( 457276bd0e2SPatrick Williams urllib.request.urlopen( 458276bd0e2SPatrick Williams f"https://gerrit.openbmc.org/changes/{change_id}/revisions/current/commit" 459276bd0e2SPatrick Williams ) 460276bd0e2SPatrick Williams .read() 461276bd0e2SPatrick Williams .splitlines()[-1] 462276bd0e2SPatrick Williams )["commit"] 463276bd0e2SPatrick Williams 464276bd0e2SPatrick Williams print( 465276bd0e2SPatrick Williams f"Using {commit} from {gerrit_topic} for {self.package}", 466276bd0e2SPatrick Williams file=sys.stderr, 467276bd0e2SPatrick Williams ) 468276bd0e2SPatrick Williams self.pkg_def["rev"] = commit 469276bd0e2SPatrick Williams return True 470276bd0e2SPatrick Williams 471276bd0e2SPatrick Williams except urllib.error.HTTPError as e: 472276bd0e2SPatrick Williams print( 473276bd0e2SPatrick Williams f"Error loading topic {gerrit_topic} for {self.package}: ", 474276bd0e2SPatrick Williams e, 475276bd0e2SPatrick Williams file=sys.stderr, 476276bd0e2SPatrick Williams ) 477276bd0e2SPatrick Williams return False 478276bd0e2SPatrick Williams 479ee3c9eebSPatrick Williams def _update_rev(self) -> None: 480ee3c9eebSPatrick Williams """Look up the HEAD for missing a static rev.""" 481ee3c9eebSPatrick Williams 482ee3c9eebSPatrick Williams if "rev" in self.pkg_def: 483ee3c9eebSPatrick Williams return 484ee3c9eebSPatrick Williams 485276bd0e2SPatrick Williams if self._check_gerrit_topic(): 486276bd0e2SPatrick Williams return 487276bd0e2SPatrick Williams 48865b21fb9SPatrick Williams # Check if Jenkins/Gerrit gave us a revision and use it. 48965b21fb9SPatrick Williams if gerrit_project == self.package and gerrit_rev: 49065b21fb9SPatrick Williams print( 49165b21fb9SPatrick Williams f"Found Gerrit revision for {self.package}: {gerrit_rev}", 49265b21fb9SPatrick Williams file=sys.stderr, 49365b21fb9SPatrick Williams ) 49465b21fb9SPatrick Williams self.pkg_def["rev"] = gerrit_rev 49565b21fb9SPatrick Williams return 49665b21fb9SPatrick Williams 497ee3c9eebSPatrick Williams # Ask Github for all the branches. 49805fb2a0aSPatrick Williams lookup = git( 49905fb2a0aSPatrick Williams "ls-remote", "--heads", f"https://github.com/{self.package}" 50005fb2a0aSPatrick Williams ) 501ee3c9eebSPatrick Williams 502ee3c9eebSPatrick Williams # Find the branch matching {branch} (or fallback to master). 503ee3c9eebSPatrick Williams # This section is locked because we are modifying the PackageDef. 504ee3c9eebSPatrick Williams Package.lock.acquire() 505ee3c9eebSPatrick Williams for line in lookup.split("\n"): 506f3d27e64SAndrew Geissler if re.fullmatch(f".*{branch}$", line.strip()): 507ee3c9eebSPatrick Williams self.pkg_def["rev"] = line.split()[0] 508f3d27e64SAndrew Geissler break 509c7d73646SPatrick Williams elif ( 510c7d73646SPatrick Williams "refs/heads/master" in line or "refs/heads/main" in line 511c7d73646SPatrick Williams ) and "rev" not in self.pkg_def: 512ee3c9eebSPatrick Williams self.pkg_def["rev"] = line.split()[0] 513ee3c9eebSPatrick Williams Package.lock.release() 514ee3c9eebSPatrick Williams 515ee3c9eebSPatrick Williams def _stagename(self) -> str: 516ee3c9eebSPatrick Williams """Create a name for the Docker stage associated with this pkg.""" 517ee3c9eebSPatrick Williams return self.package.replace("/", "-").lower() 518ee3c9eebSPatrick Williams 519ee3c9eebSPatrick Williams def _url(self) -> str: 520ee3c9eebSPatrick Williams """Get the URL for this package.""" 521ee3c9eebSPatrick Williams rev = self.pkg_def["rev"] 522ee3c9eebSPatrick Williams 523ee3c9eebSPatrick Williams # If the lambda exists, call it. 524ee3c9eebSPatrick Williams if "url" in self.pkg_def: 525ee3c9eebSPatrick Williams return self.pkg_def["url"](self.package, rev) 526ee3c9eebSPatrick Williams 527ee3c9eebSPatrick Williams # Default to the github archive URL. 528ee3c9eebSPatrick Williams return f"https://github.com/{self.package}/archive/{rev}.tar.gz" 529ee3c9eebSPatrick Williams 530ee3c9eebSPatrick Williams def _cmd_download(self) -> str: 531ee3c9eebSPatrick Williams """Formulate the command necessary to download and unpack to source.""" 532ee3c9eebSPatrick Williams 533ee3c9eebSPatrick Williams url = self._url() 534ee3c9eebSPatrick Williams if ".tar." not in url: 535ee3c9eebSPatrick Williams raise NotImplementedError( 536ee3c9eebSPatrick Williams f"Unhandled download type for {self.package}: {url}" 537ee3c9eebSPatrick Williams ) 538ee3c9eebSPatrick Williams 539ee3c9eebSPatrick Williams cmd = f"curl -L {url} | tar -x" 540ee3c9eebSPatrick Williams 541ee3c9eebSPatrick Williams if url.endswith(".bz2"): 542ee3c9eebSPatrick Williams cmd += "j" 543ee3c9eebSPatrick Williams elif url.endswith(".gz"): 544ee3c9eebSPatrick Williams cmd += "z" 545ee3c9eebSPatrick Williams else: 546ee3c9eebSPatrick Williams raise NotImplementedError( 547ee3c9eebSPatrick Williams f"Unknown tar flags needed for {self.package}: {url}" 548ee3c9eebSPatrick Williams ) 549ee3c9eebSPatrick Williams 550ee3c9eebSPatrick Williams return cmd 551ee3c9eebSPatrick Williams 552ee3c9eebSPatrick Williams def _cmd_cd_srcdir(self) -> str: 553ee3c9eebSPatrick Williams """Formulate the command necessary to 'cd' into the source dir.""" 554ee3c9eebSPatrick Williams return f"cd {self.package.split('/')[-1]}*" 555ee3c9eebSPatrick Williams 556ee3c9eebSPatrick Williams def _df_copycmds(self) -> str: 557ee3c9eebSPatrick Williams """Formulate the dockerfile snippet necessary to COPY all depends.""" 558ee3c9eebSPatrick Williams 559ee3c9eebSPatrick Williams if "depends" not in self.pkg_def: 560ee3c9eebSPatrick Williams return "" 561ee3c9eebSPatrick Williams return Package.df_copycmds_set(self.pkg_def["depends"]) 562ee3c9eebSPatrick Williams 563ee3c9eebSPatrick Williams @staticmethod 564ee3c9eebSPatrick Williams def df_copycmds_set(pkgs: Iterable[str]) -> str: 565ee3c9eebSPatrick Williams """Formulate the Dockerfile snippet necessary to COPY a set of 566ee3c9eebSPatrick Williams packages into a Docker stage. 567ee3c9eebSPatrick Williams """ 568ee3c9eebSPatrick Williams 569ee3c9eebSPatrick Williams copy_cmds = "" 570ee3c9eebSPatrick Williams 571ee3c9eebSPatrick Williams # Sort the packages for consistency. 572ee3c9eebSPatrick Williams for p in sorted(pkgs): 573ee3c9eebSPatrick Williams tag = Package.packages[p]["__tag"] 574ee3c9eebSPatrick Williams copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n" 575ee3c9eebSPatrick Williams # Workaround for upstream docker bug and multiple COPY cmds 576ee3c9eebSPatrick Williams # https://github.com/moby/moby/issues/37965 577ee3c9eebSPatrick Williams copy_cmds += "RUN true\n" 578ee3c9eebSPatrick Williams 579ee3c9eebSPatrick Williams return copy_cmds 580ee3c9eebSPatrick Williams 581ee3c9eebSPatrick Williams def _df_build(self) -> str: 582ee3c9eebSPatrick Williams """Formulate the Dockerfile snippet necessary to download, build, and 583ee3c9eebSPatrick Williams install a package into a Docker stage. 584ee3c9eebSPatrick Williams """ 585ee3c9eebSPatrick Williams 586ee3c9eebSPatrick Williams # Download and extract source. 587ee3c9eebSPatrick Williams result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && " 588ee3c9eebSPatrick Williams 589ee3c9eebSPatrick Williams # Handle 'custom_post_dl' commands. 590ee3c9eebSPatrick Williams custom_post_dl = self.pkg_def.get("custom_post_dl") 591ee3c9eebSPatrick Williams if custom_post_dl: 592ee3c9eebSPatrick Williams result += " && ".join(custom_post_dl) + " && " 593ee3c9eebSPatrick Williams 594ee3c9eebSPatrick Williams # Build and install package based on 'build_type'. 595ee3c9eebSPatrick Williams build_type = self.pkg_def["build_type"] 596ee3c9eebSPatrick Williams if build_type == "autoconf": 597ee3c9eebSPatrick Williams result += self._cmd_build_autoconf() 598ee3c9eebSPatrick Williams elif build_type == "cmake": 599ee3c9eebSPatrick Williams result += self._cmd_build_cmake() 600ee3c9eebSPatrick Williams elif build_type == "custom": 601ee3c9eebSPatrick Williams result += self._cmd_build_custom() 602ee3c9eebSPatrick Williams elif build_type == "make": 603ee3c9eebSPatrick Williams result += self._cmd_build_make() 604ee3c9eebSPatrick Williams elif build_type == "meson": 605ee3c9eebSPatrick Williams result += self._cmd_build_meson() 606ee3c9eebSPatrick Williams else: 607ee3c9eebSPatrick Williams raise NotImplementedError( 608ee3c9eebSPatrick Williams f"Unhandled build type for {self.package}: {build_type}" 609ee3c9eebSPatrick Williams ) 610ee3c9eebSPatrick Williams 6116bce2ca1SPatrick Williams # Handle 'custom_post_install' commands. 6126bce2ca1SPatrick Williams custom_post_install = self.pkg_def.get("custom_post_install") 6136bce2ca1SPatrick Williams if custom_post_install: 6146bce2ca1SPatrick Williams result += " && " + " && ".join(custom_post_install) 6156bce2ca1SPatrick Williams 616ee3c9eebSPatrick Williams return result 617ee3c9eebSPatrick Williams 618ee3c9eebSPatrick Williams def _cmd_build_autoconf(self) -> str: 619ee3c9eebSPatrick Williams options = " ".join(self.pkg_def.get("config_flags", [])) 620ee3c9eebSPatrick Williams env = " ".join(self.pkg_def.get("config_env", [])) 621ee3c9eebSPatrick Williams result = "./bootstrap.sh && " 622ee3c9eebSPatrick Williams result += f"{env} ./configure {configure_flags} {options} && " 623ee3c9eebSPatrick Williams result += f"make -j{proc_count} && make install" 624ee3c9eebSPatrick Williams return result 625ee3c9eebSPatrick Williams 626ee3c9eebSPatrick Williams def _cmd_build_cmake(self) -> str: 627ee3c9eebSPatrick Williams options = " ".join(self.pkg_def.get("config_flags", [])) 628ee3c9eebSPatrick Williams env = " ".join(self.pkg_def.get("config_env", [])) 629ee3c9eebSPatrick Williams result = "mkdir builddir && cd builddir && " 630ee3c9eebSPatrick Williams result += f"{env} cmake {cmake_flags} {options} .. && " 631ee3c9eebSPatrick Williams result += "cmake --build . --target all && " 632ee3c9eebSPatrick Williams result += "cmake --build . --target install && " 633ee3c9eebSPatrick Williams result += "cd .." 634ee3c9eebSPatrick Williams return result 635ee3c9eebSPatrick Williams 636ee3c9eebSPatrick Williams def _cmd_build_custom(self) -> str: 637ee3c9eebSPatrick Williams return " && ".join(self.pkg_def.get("build_steps", [])) 638ee3c9eebSPatrick Williams 639ee3c9eebSPatrick Williams def _cmd_build_make(self) -> str: 640ee3c9eebSPatrick Williams return f"make -j{proc_count} && make install" 641ee3c9eebSPatrick Williams 642ee3c9eebSPatrick Williams def _cmd_build_meson(self) -> str: 643ee3c9eebSPatrick Williams options = " ".join(self.pkg_def.get("config_flags", [])) 644ee3c9eebSPatrick Williams env = " ".join(self.pkg_def.get("config_env", [])) 645e2da11adSAndrew Jeffery result = f"{env} meson setup builddir {meson_flags} {options} && " 646ee3c9eebSPatrick Williams result += "ninja -C builddir && ninja -C builddir install" 647ee3c9eebSPatrick Williams return result 648ee3c9eebSPatrick Williams 649ee3c9eebSPatrick Williams 650ee3c9eebSPatrick Williamsclass Docker: 651ee3c9eebSPatrick Williams """Class to assist with Docker interactions. All methods are static.""" 652ee3c9eebSPatrick Williams 653ee3c9eebSPatrick Williams @staticmethod 654ee3c9eebSPatrick Williams def timestamp() -> str: 655ee3c9eebSPatrick Williams """Generate a timestamp for today using the ISO week.""" 656ee3c9eebSPatrick Williams today = date.today().isocalendar() 657ee3c9eebSPatrick Williams return f"{today[0]}-W{today[1]:02}" 658ee3c9eebSPatrick Williams 659ee3c9eebSPatrick Williams @staticmethod 66041d86218SPatrick Williams def tagname(pkgname: Optional[str], dockerfile: str) -> str: 661ee3c9eebSPatrick Williams """Generate a tag name for a package using a hash of the Dockerfile.""" 662ee3c9eebSPatrick Williams result = docker_image_name 663ee3c9eebSPatrick Williams if pkgname: 664ee3c9eebSPatrick Williams result += "-" + pkgname 665ee3c9eebSPatrick Williams 666ee3c9eebSPatrick Williams result += ":" + Docker.timestamp() 667ee3c9eebSPatrick Williams result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16] 668ee3c9eebSPatrick Williams 669ee3c9eebSPatrick Williams return result 670ee3c9eebSPatrick Williams 671ee3c9eebSPatrick Williams @staticmethod 672ee3c9eebSPatrick Williams def build(pkg: str, tag: str, dockerfile: str) -> None: 67322e6110bSAndrew Geissler """Build a docker image using the Dockerfile and tagging it with 'tag'.""" 674ee3c9eebSPatrick Williams 675ee3c9eebSPatrick Williams # If we're not forcing builds, check if it already exists and skip. 676ee3c9eebSPatrick Williams if not force_build: 6778f7146faSAndrew Geissler if container.image.ls( 6788f7146faSAndrew Geissler tag, "--format", '"{{.Repository}}:{{.Tag}}"' 6798f7146faSAndrew Geissler ): 68005fb2a0aSPatrick Williams print( 68105fb2a0aSPatrick Williams f"Image {tag} already exists. Skipping.", file=sys.stderr 68205fb2a0aSPatrick Williams ) 683ee3c9eebSPatrick Williams return 684ee3c9eebSPatrick Williams 685ee3c9eebSPatrick Williams # Build it. 686ee3c9eebSPatrick Williams # Capture the output of the 'docker build' command and send it to 687ee3c9eebSPatrick Williams # stderr (prefixed with the package name). This allows us to see 688a6ebc6e2SManojkiran Eda # progress but not pollute stdout. Later on we output the final 689ee3c9eebSPatrick Williams # docker tag to stdout and we want to keep that pristine. 690ee3c9eebSPatrick Williams # 691ee3c9eebSPatrick Williams # Other unusual flags: 692ee3c9eebSPatrick Williams # --no-cache: Bypass the Docker cache if 'force_build'. 693ee3c9eebSPatrick Williams # --force-rm: Clean up Docker processes if they fail. 6948f7146faSAndrew Geissler container.build( 695ee3c9eebSPatrick Williams proxy_args, 696ee3c9eebSPatrick Williams "--network=host", 697ee3c9eebSPatrick Williams "--force-rm", 698ee3c9eebSPatrick Williams "--no-cache=true" if force_build else "--no-cache=false", 699ee3c9eebSPatrick Williams "-t", 700ee3c9eebSPatrick Williams tag, 701ee3c9eebSPatrick Williams "-", 702ee3c9eebSPatrick Williams _in=dockerfile, 703ee3c9eebSPatrick Williams _out=( 704ee3c9eebSPatrick Williams lambda line: print( 705ee3c9eebSPatrick Williams pkg + ":", line, end="", file=sys.stderr, flush=True 706ee3c9eebSPatrick Williams ) 707ee3c9eebSPatrick Williams ), 70888dd7929SJonathan Doman _err_to_out=True, 709ee3c9eebSPatrick Williams ) 710ee3c9eebSPatrick Williams 711ee3c9eebSPatrick Williams 712ee3c9eebSPatrick Williams# Read a bunch of environment variables. 71305fb2a0aSPatrick Williamsdocker_image_name = os.environ.get( 71405fb2a0aSPatrick Williams "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test" 71505fb2a0aSPatrick Williams) 716ee3c9eebSPatrick Williamsforce_build = os.environ.get("FORCE_DOCKER_BUILD") 717ee3c9eebSPatrick Williamsis_automated_ci_build = os.environ.get("BUILD_URL", False) 718917b1774SPatrick Williamsdistro = os.environ.get("DISTRO", "ubuntu:oracular") 719ee3c9eebSPatrick Williamsbranch = os.environ.get("BRANCH", "master") 720ee3c9eebSPatrick Williamsubuntu_mirror = os.environ.get("UBUNTU_MIRROR") 72123ec3323SAndrew Geisslerdocker_reg = os.environ.get("DOCKER_REG", "public.ecr.aws/ubuntu") 722ee3c9eebSPatrick Williamshttp_proxy = os.environ.get("http_proxy") 723ee3c9eebSPatrick Williams 72465b21fb9SPatrick Williamsgerrit_project = os.environ.get("GERRIT_PROJECT") 72565b21fb9SPatrick Williamsgerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION") 726276bd0e2SPatrick Williamsgerrit_topic = os.environ.get("GERRIT_TOPIC") 72765b21fb9SPatrick Williams 728d0dabc3eSAndrew Geissler# Ensure appropriate docker build output to see progress and identify 729d0dabc3eSAndrew Geissler# any issues 730d0dabc3eSAndrew Geissleros.environ["BUILDKIT_PROGRESS"] = "plain" 731d0dabc3eSAndrew Geissler 732ee3c9eebSPatrick Williams# Set up some common variables. 733ee3c9eebSPatrick Williamsusername = os.environ.get("USER", "root") 734ee3c9eebSPatrick Williamshomedir = os.environ.get("HOME", "/root") 735ee3c9eebSPatrick Williamsgid = os.getgid() 736ee3c9eebSPatrick Williamsuid = os.getuid() 737ee3c9eebSPatrick Williams 7386825a018SJosh Lehan# Use well-known constants if user is root 7396825a018SJosh Lehanif username == "root": 7406825a018SJosh Lehan homedir = "/root" 7416825a018SJosh Lehan gid = 0 7426825a018SJosh Lehan uid = 0 7436825a018SJosh Lehan 74402871c91SPatrick Williams# Special flags if setting up a deb mirror. 74502871c91SPatrick Williamsmirror = "" 74602871c91SPatrick Williamsif "ubuntu" in distro and ubuntu_mirror: 74702871c91SPatrick Williams mirror = f""" 748e08ffba8SPatrick WilliamsRUN echo "deb {ubuntu_mirror} \ 749e08ffba8SPatrick Williams $(. /etc/os-release && echo $VERSION_CODENAME) \ 750e08ffba8SPatrick Williams main restricted universe multiverse" > /etc/apt/sources.list && \\ 751e08ffba8SPatrick Williams echo "deb {ubuntu_mirror} \ 752e08ffba8SPatrick Williams $(. /etc/os-release && echo $VERSION_CODENAME)-updates \ 753e08ffba8SPatrick Williams main restricted universe multiverse" >> /etc/apt/sources.list && \\ 754e08ffba8SPatrick Williams echo "deb {ubuntu_mirror} \ 755e08ffba8SPatrick Williams $(. /etc/os-release && echo $VERSION_CODENAME)-security \ 756e08ffba8SPatrick Williams main restricted universe multiverse" >> /etc/apt/sources.list && \\ 757e08ffba8SPatrick Williams echo "deb {ubuntu_mirror} \ 758e08ffba8SPatrick Williams $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \ 759e08ffba8SPatrick Williams main restricted universe multiverse" >> /etc/apt/sources.list && \\ 760e08ffba8SPatrick Williams echo "deb {ubuntu_mirror} \ 761e08ffba8SPatrick Williams $(. /etc/os-release && echo $VERSION_CODENAME)-backports \ 762e08ffba8SPatrick Williams main restricted universe multiverse" >> /etc/apt/sources.list 76302871c91SPatrick Williams""" 76402871c91SPatrick Williams 76502871c91SPatrick Williams# Special flags for proxying. 76602871c91SPatrick Williamsproxy_cmd = "" 76734ec77e8SAdrian Ambrożewiczproxy_keyserver = "" 76802871c91SPatrick Williamsproxy_args = [] 76902871c91SPatrick Williamsif http_proxy: 77002871c91SPatrick Williams proxy_cmd = f""" 77102871c91SPatrick WilliamsRUN echo "[http]" >> {homedir}/.gitconfig && \ 77202871c91SPatrick Williams echo "proxy = {http_proxy}" >> {homedir}/.gitconfig 7733aa71c8cSTan SiewertCOPY <<EOF_WGETRC {homedir}/.wgetrc 774f7e52612SLei YUhttps_proxy = {http_proxy} 775f7e52612SLei YUhttp_proxy = {http_proxy} 776f7e52612SLei YUuse_proxy = on 777f7e52612SLei YUEOF_WGETRC 77802871c91SPatrick Williams""" 77934ec77e8SAdrian Ambrożewicz proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}" 78034ec77e8SAdrian Ambrożewicz 78102871c91SPatrick Williams proxy_args.extend( 78202871c91SPatrick Williams [ 78302871c91SPatrick Williams "--build-arg", 78402871c91SPatrick Williams f"http_proxy={http_proxy}", 78502871c91SPatrick Williams "--build-arg", 786d461cd6aSLei YU f"https_proxy={http_proxy}", 78702871c91SPatrick Williams ] 78802871c91SPatrick Williams ) 78902871c91SPatrick Williams 790ee3c9eebSPatrick Williams# Create base Dockerfile. 791a18d9c57SPatrick Williamsdockerfile_base = f""" 792fe2768c7SAndrew GeisslerFROM {docker_reg}/{distro} 79302871c91SPatrick Williams 79402871c91SPatrick Williams{mirror} 79502871c91SPatrick Williams 79602871c91SPatrick WilliamsENV DEBIAN_FRONTEND noninteractive 79702871c91SPatrick Williams 7988949d3c3SPatrick WilliamsENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/" 79902871c91SPatrick Williams 800bb16ac14SPatrick Williams# Sometimes the ubuntu key expires and we need a way to force an execution 801bb16ac14SPatrick Williams# of the apt-get commands for the dbgsym-keyring. When this happens we see 802bb16ac14SPatrick Williams# an error like: "Release: The following signatures were invalid:" 803bb16ac14SPatrick Williams# Insert a bogus echo that we can change here when we get this error to force 804bb16ac14SPatrick Williams# the update. 805bb16ac14SPatrick WilliamsRUN echo "ubuntu keyserver rev as of 2021-04-21" 806bb16ac14SPatrick Williams 80702871c91SPatrick Williams# We need the keys to be imported for dbgsym repos 80802871c91SPatrick Williams# New releases have a package, older ones fall back to manual fetching 80902871c91SPatrick Williams# https://wiki.ubuntu.com/Debug%20Symbol%20Packages 810575b5e4cSJagpal Singh Gill# Known issue with gpg to get keys via proxy - 811575b5e4cSJagpal Singh Gill# https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1788190, hence using 812575b5e4cSJagpal Singh Gill# curl to get keys. 81350837436SPatrick WilliamsRUN apt-get update && apt-get dist-upgrade -yy && \ 814938d303fSJian Zhang ( apt-get install -yy gpgv ubuntu-dbgsym-keyring || \ 815575b5e4cSJagpal Singh Gill ( apt-get install -yy dirmngr curl && \ 816575b5e4cSJagpal Singh Gill curl -sSL \ 817575b5e4cSJagpal Singh Gill 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622' \ 818575b5e4cSJagpal Singh Gill | apt-key add - )) 81902871c91SPatrick Williams 82002871c91SPatrick Williams# Parse the current repo list into a debug repo list 821e08ffba8SPatrick WilliamsRUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \ 822e08ffba8SPatrick Williams /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list 82302871c91SPatrick Williams 82402871c91SPatrick Williams# Remove non-existent debug repos 82541d86218SPatrick WilliamsRUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list 82602871c91SPatrick Williams 82702871c91SPatrick WilliamsRUN cat /etc/apt/sources.list.d/debug.list 82802871c91SPatrick Williams 82902871c91SPatrick WilliamsRUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \ 83058f1915eSAndrew Jeffery abi-compliance-checker \ 8318b112068SAndrew Jeffery abi-dumper \ 83202871c91SPatrick Williams autoconf \ 83302871c91SPatrick Williams autoconf-archive \ 834af49ed51SAndrew Geissler bison \ 835af49ed51SAndrew Geissler cmake \ 836af49ed51SAndrew Geissler curl \ 837af49ed51SAndrew Geissler dbus \ 838af49ed51SAndrew Geissler device-tree-compiler \ 839af49ed51SAndrew Geissler flex \ 840dbce976dSAndrew Jeffery g++-14 \ 841dbce976dSAndrew Jeffery gcc-14 \ 842af49ed51SAndrew Geissler git \ 843b4eec87bSPatrick Williams glib-2.0 \ 8446968e83eSPatrick Williams gnupg \ 84502871c91SPatrick Williams iproute2 \ 846af49ed51SAndrew Geissler iputils-ping \ 847524a331cSManojkiran Eda libaudit-dev \ 848af49ed51SAndrew Geissler libc6-dbg \ 849af49ed51SAndrew Geissler libc6-dev \ 850c7bc4d1dSPatrick Williams libcjson-dev \ 851af49ed51SAndrew Geissler libconfig++-dev \ 852af49ed51SAndrew Geissler libcryptsetup-dev \ 853a7a30551SAnirban Banerjee libcurl4-openssl-dev \ 854af49ed51SAndrew Geissler libdbus-1-dev \ 855af49ed51SAndrew Geissler libevdev-dev \ 856af49ed51SAndrew Geissler libgpiod-dev \ 857af49ed51SAndrew Geissler libi2c-dev \ 858af49ed51SAndrew Geissler libjpeg-dev \ 859af49ed51SAndrew Geissler libjson-perl \ 860af49ed51SAndrew Geissler libldap2-dev \ 861af49ed51SAndrew Geissler libmimetic-dev \ 86202871c91SPatrick Williams libnl-3-dev \ 86302871c91SPatrick Williams libnl-genl-3-dev \ 86402871c91SPatrick Williams libpam0g-dev \ 86502871c91SPatrick Williams libpciaccess-dev \ 866af49ed51SAndrew Geissler libperlio-gzip-perl \ 867af49ed51SAndrew Geissler libpng-dev \ 868af49ed51SAndrew Geissler libprotobuf-dev \ 869af49ed51SAndrew Geissler libsnmp-dev \ 870af49ed51SAndrew Geissler libssl-dev \ 871af49ed51SAndrew Geissler libsystemd-dev \ 872af49ed51SAndrew Geissler libtool \ 873af49ed51SAndrew Geissler liburing-dev \ 87402871c91SPatrick Williams libxml2-utils \ 8750eedeedaSPatrick Williams libxml-simple-perl \ 8766968e83eSPatrick Williams lsb-release \ 877af49ed51SAndrew Geissler ninja-build \ 878af49ed51SAndrew Geissler npm \ 879af49ed51SAndrew Geissler pkg-config \ 880af49ed51SAndrew Geissler protobuf-compiler \ 881af49ed51SAndrew Geissler python3 \ 882af49ed51SAndrew Geissler python3-dev\ 883af49ed51SAndrew Geissler python3-git \ 884af49ed51SAndrew Geissler python3-mako \ 885af49ed51SAndrew Geissler python3-pip \ 88625ba1e2fSWilliam A. Kennington III python3-protobuf \ 887af49ed51SAndrew Geissler python3-setuptools \ 888af49ed51SAndrew Geissler python3-socks \ 889af49ed51SAndrew Geissler python3-yaml \ 8909adf68d6SJohn Wedig rsync \ 891af49ed51SAndrew Geissler shellcheck \ 8928dd1bfe6SEwelina Walkusz socat \ 8936968e83eSPatrick Williams software-properties-common \ 894af49ed51SAndrew Geissler sudo \ 895af49ed51SAndrew Geissler systemd \ 896917b1774SPatrick Williams systemd-dev \ 897af49ed51SAndrew Geissler valgrind \ 898b565f825SAndrew Geissler vim \ 899af49ed51SAndrew Geissler wget \ 900af49ed51SAndrew Geissler xxd 90102871c91SPatrick Williams 902dbce976dSAndrew JefferyRUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14 \ 903dbce976dSAndrew Jeffery --slave /usr/bin/g++ g++ /usr/bin/g++-14 \ 904dbce976dSAndrew Jeffery --slave /usr/bin/gcov gcov /usr/bin/gcov-14 \ 905dbce976dSAndrew Jeffery --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-14 \ 906dbce976dSAndrew Jeffery --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-14 907961f148bSPatrick WilliamsRUN update-alternatives --remove cpp /usr/bin/cpp && \ 908dbce976dSAndrew Jeffery update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-14 14 90902871c91SPatrick Williams 9106968e83eSPatrick Williams# Set up LLVM apt repository. 911759c0091SPatrick WilliamsRUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" -- 19 9126968e83eSPatrick Williams 9136968e83eSPatrick Williams# Install extra clang tools 914ed8aecafSPatrick WilliamsRUN apt-get install -y \ 915ed8aecafSPatrick Williams clang-19 \ 916ed8aecafSPatrick Williams clang-format-19 \ 917ed8aecafSPatrick Williams clang-tidy-19 9186968e83eSPatrick Williams 919ed8aecafSPatrick WilliamsRUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 1000 \ 920ed8aecafSPatrick Williams --slave /usr/bin/clang++ clang++ /usr/bin/clang++-19 \ 921ed8aecafSPatrick Williams --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-19 \ 922ed8aecafSPatrick Williams --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-19 \ 923e08ffba8SPatrick Williams --slave /usr/bin/run-clang-tidy run-clang-tidy.py \ 924ed8aecafSPatrick Williams /usr/bin/run-clang-tidy-19 \ 925ed8aecafSPatrick Williams --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-19 92602871c91SPatrick Williams 92750837436SPatrick Williams""" 92850837436SPatrick Williams 92950837436SPatrick Williamsif is_automated_ci_build: 93050837436SPatrick Williams dockerfile_base += f""" 931a6ebc6e2SManojkiran Eda# Run an arbitrary command to pollute the docker cache regularly force us 93250837436SPatrick Williams# to re-run `apt-get update` daily. 933ee3c9eebSPatrick WilliamsRUN echo {Docker.timestamp()} 93450837436SPatrick WilliamsRUN apt-get update && apt-get dist-upgrade -yy 93550837436SPatrick Williams 93650837436SPatrick Williams""" 93750837436SPatrick Williams 93841d86218SPatrick Williamsdockerfile_base += """ 9395e4d8402SPatrick WilliamsRUN pip3 install --break-system-packages \ 940818023dfSPatrick Williams beautysh \ 941818023dfSPatrick Williams black \ 942818023dfSPatrick Williams codespell \ 943818023dfSPatrick Williams flake8 \ 9442d8c551fSEwelina Walkusz gcovr \ 945818023dfSPatrick Williams gitlint \ 946818023dfSPatrick Williams inflection \ 947f7381ad6SArya K Padman isoduration \ 948818023dfSPatrick Williams isort \ 949818023dfSPatrick Williams jsonschema \ 950*62eb4273SPatrick Williams meson==1.7.0 \ 951818023dfSPatrick Williams requests 952b08ddf77SPatrick Williams 953b08ddf77SPatrick WilliamsRUN npm install -g \ 954d0757deaSXinnan Xie eslint@v8.56.0 eslint-plugin-json@v3.1.0 \ 9557d41f6d2SPatrick Williams markdownlint-cli@latest \ 956b08ddf77SPatrick Williams prettier@latest 957fb9948a3SEd Tanous""" 958fb9948a3SEd Tanous 959ee3c9eebSPatrick Williams# Build the base and stage docker images. 960ee3c9eebSPatrick Williamsdocker_base_img_name = Docker.tagname("base", dockerfile_base) 961ee3c9eebSPatrick WilliamsDocker.build("base", docker_base_img_name, dockerfile_base) 962ee3c9eebSPatrick WilliamsPackage.generate_all() 96302871c91SPatrick Williams 964ee3c9eebSPatrick Williams# Create the final Dockerfile. 965a18d9c57SPatrick Williamsdockerfile = f""" 96602871c91SPatrick Williams# Build the final output image 967a18d9c57SPatrick WilliamsFROM {docker_base_img_name} 968ee3c9eebSPatrick Williams{Package.df_all_copycmds()} 96902871c91SPatrick Williams 97002871c91SPatrick Williams# Some of our infrastructure still relies on the presence of this file 97102871c91SPatrick Williams# even though it is no longer needed to rebuild the docker environment 97202871c91SPatrick Williams# NOTE: The file is sorted to ensure the ordering is stable. 973ee3c9eebSPatrick WilliamsRUN echo '{Package.depcache()}' > /tmp/depcache 97402871c91SPatrick Williams 97567cc0616SPatrick Williams# Ensure the group, user, and home directory are created (or rename them if 97667cc0616SPatrick Williams# they already exist). 97767cc0616SPatrick WilliamsRUN if grep -q ":{gid}:" /etc/group ; then \ 97867cc0616SPatrick Williams groupmod -n {username} $(awk -F : '{{ if ($3 == {gid}) {{ print $1 }} }}' /etc/group) ; \ 97967cc0616SPatrick Williams else \ 98067cc0616SPatrick Williams groupadd -f -g {gid} {username} ; \ 98167cc0616SPatrick Williams fi 98202871c91SPatrick WilliamsRUN mkdir -p "{os.path.dirname(homedir)}" 98367cc0616SPatrick WilliamsRUN if grep -q ":{uid}:" /etc/passwd ; then \ 98473b3ee91SPatrick Williams usermod -l {username} -d {homedir} -m $(awk -F : '{{ if ($3 == {uid}) {{ print $1 }} }}' /etc/passwd) ; \ 98567cc0616SPatrick Williams else \ 98667cc0616SPatrick Williams useradd -d {homedir} -m -u {uid} -g {gid} {username} ; \ 98767cc0616SPatrick Williams fi 98802871c91SPatrick WilliamsRUN sed -i '1iDefaults umask=000' /etc/sudoers 98902871c91SPatrick WilliamsRUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers 99002871c91SPatrick Williams 991305a9a5dSAndrew Geissler# Ensure user has ability to write to /usr/local for different tool 992305a9a5dSAndrew Geissler# and data installs 9937bb00b13SAndrew GeisslerRUN chown -R {username}:{username} /usr/local/share 994305a9a5dSAndrew Geissler 995ab4fee83SJonathan Doman# Update library cache 996ab4fee83SJonathan DomanRUN ldconfig 997ab4fee83SJonathan Doman 99802871c91SPatrick Williams{proxy_cmd} 99902871c91SPatrick Williams 100002871c91SPatrick WilliamsRUN /bin/bash 100102871c91SPatrick Williams""" 100202871c91SPatrick Williams 1003a18d9c57SPatrick Williams# Do the final docker build 1004ee3c9eebSPatrick Williamsdocker_final_img_name = Docker.tagname(None, dockerfile) 1005ee3c9eebSPatrick WilliamsDocker.build("final", docker_final_img_name, dockerfile) 1006ee3c9eebSPatrick Williams 100700536fbeSPatrick Williams# Print the tag of the final image. 100800536fbeSPatrick Williamsprint(docker_final_img_name) 1009