| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 1 | #!/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 Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 9 | #   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 Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 13 | #   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 |  | 
 | 23 | import os | 
 | 24 | import sys | 
| Patrick Williams | b16f3e2 | 2021-02-06 08:16:47 -0600 | [diff] [blame] | 25 | import threading | 
| Patrick Williams | a18d9c5 | 2021-02-05 09:52:26 -0600 | [diff] [blame] | 26 | from datetime import date | 
 | 27 | from hashlib import sha256 | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 28 |  | 
 | 29 | # typing.Dict is used for type-hints. | 
 | 30 | from typing import Any, Callable, Dict, Iterable, Optional  # noqa: F401 | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 31 |  | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 32 | from sh import docker, git, nproc, uname  # type: ignore | 
 | 33 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 34 | try: | 
 | 35 |     # Python before 3.8 doesn't have TypedDict, so reroute to standard 'dict'. | 
 | 36 |     from typing import TypedDict | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 37 | except Exception: | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 38 |  | 
 | 39 |     class TypedDict(dict):  # type: ignore | 
 | 40 |         # We need to do this to eat the 'total' argument. | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 41 |         def __init_subclass__(cls, **kwargs: Any) -> None: | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 42 |             super().__init_subclass__() | 
 | 43 |  | 
 | 44 |  | 
 | 45 | # Declare some variables used in package definitions. | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 46 | prefix = "/usr/local" | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 47 | proc_count = nproc().strip() | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 48 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 49 |  | 
 | 50 | class PackageDef(TypedDict, total=False): | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 51 |     """Package Definition for packages dictionary.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 52 |  | 
 | 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 Williams | 6bce2ca | 2021-02-12 21:13:37 -0600 | [diff] [blame] | 71 |     # custom_post_install [optional]: List of steps to run after install. | 
 | 72 |     custom_post_install: Iterable[str] | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 73 |  | 
 | 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 Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 79 |  | 
| Patrick Williams | 7204324 | 2021-02-02 10:31:45 -0600 | [diff] [blame] | 80 | # Packages to include in image. | 
 | 81 | packages = { | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 82 |     "boost": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 83 |         rev="1.80.0", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 84 |         url=( | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 85 |             lambda pkg, rev: f"https://downloads.yoctoproject.org/mirror/sources/{pkg}_{rev.replace('.', '_')}.tar.bz2"  # noqa: E501 | 
| Patrick Williams | 2abc4a4 | 2021-02-03 06:11:40 -0600 | [diff] [blame] | 86 |         ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 87 |         build_type="custom", | 
 | 88 |         build_steps=[ | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 89 |             ( | 
 | 90 |                 "./bootstrap.sh" | 
 | 91 |                 f" --prefix={prefix} --with-libraries=context,coroutine" | 
 | 92 |             ), | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 93 |             "./b2", | 
 | 94 |             f"./b2 install --prefix={prefix}", | 
 | 95 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 96 |     ), | 
 | 97 |     "USCiLab/cereal": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 98 |         rev="v1.3.2", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 99 |         build_type="custom", | 
 | 100 |         build_steps=[f"cp -a include/cereal/ {prefix}/include/"], | 
 | 101 |     ), | 
| Ed Tanous | c719855 | 2022-07-01 08:15:50 -0700 | [diff] [blame] | 102 |     "danmar/cppcheck": PackageDef( | 
| Patrick Williams | be4bd08 | 2022-10-03 08:59:12 -0500 | [diff] [blame] | 103 |         rev="2.9", | 
| Ed Tanous | c719855 | 2022-07-01 08:15:50 -0700 | [diff] [blame] | 104 |         build_type="cmake", | 
 | 105 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 106 |     "CLIUtils/CLI11": PackageDef( | 
 | 107 |         rev="v1.9.1", | 
 | 108 |         build_type="cmake", | 
 | 109 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 110 |             "-DBUILD_TESTING=OFF", | 
 | 111 |             "-DCLI11_BUILD_DOCS=OFF", | 
 | 112 |             "-DCLI11_BUILD_EXAMPLES=OFF", | 
 | 113 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 114 |     ), | 
 | 115 |     "fmtlib/fmt": PackageDef( | 
| William A. Kennington III | 652d8ae | 2022-10-02 17:01:16 -0700 | [diff] [blame] | 116 |         rev="9.1.0", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 117 |         build_type="cmake", | 
 | 118 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 119 |             "-DFMT_DOC=OFF", | 
 | 120 |             "-DFMT_TEST=OFF", | 
 | 121 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 122 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 123 |     "Naios/function2": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 124 |         rev="4.2.1", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 125 |         build_type="custom", | 
 | 126 |         build_steps=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 127 |             f"mkdir {prefix}/include/function2", | 
 | 128 |             f"cp include/function2/function2.hpp {prefix}/include/function2/", | 
 | 129 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 130 |     ), | 
| Patrick Williams | ed9414e | 2022-09-08 11:23:01 -0500 | [diff] [blame] | 131 |     # release-1.12.1 | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 132 |     "google/googletest": PackageDef( | 
| Patrick Williams | ed9414e | 2022-09-08 11:23:01 -0500 | [diff] [blame] | 133 |         rev="58d77fa8070e8cec2dc1ed015d66b454c8d78850", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 134 |         build_type="cmake", | 
| William A. Kennington III | 4dd32c0 | 2021-05-28 01:58:13 -0700 | [diff] [blame] | 135 |         config_env=["CXXFLAGS=-std=c++20"], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 136 |         config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"], | 
 | 137 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 138 |     "nlohmann/json": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 139 |         rev="v3.11.2", | 
| Patrick Williams | 6bce2ca | 2021-02-12 21:13:37 -0600 | [diff] [blame] | 140 |         build_type="cmake", | 
 | 141 |         config_flags=["-DJSON_BuildTests=OFF"], | 
 | 142 |         custom_post_install=[ | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 143 |             ( | 
 | 144 |                 f"ln -s {prefix}/include/nlohmann/json.hpp" | 
 | 145 |                 f" {prefix}/include/json.hpp" | 
 | 146 |             ), | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 147 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 148 |     ), | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 149 |     # Snapshot from 2019-05-24 | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 150 |     "linux-test-project/lcov": PackageDef( | 
 | 151 |         rev="v1.15", | 
 | 152 |         build_type="make", | 
 | 153 |     ), | 
| Patrick Williams | 001055b | 2022-11-28 07:58:27 -0600 | [diff] [blame] | 154 |     # dev-6.0 2022-11-28 | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 155 |     "openbmc/linux": PackageDef( | 
| Patrick Williams | 001055b | 2022-11-28 07:58:27 -0600 | [diff] [blame] | 156 |         rev="1b16243b004ce4d977a9f3b9d9e715cf5028f867", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 157 |         build_type="custom", | 
 | 158 |         build_steps=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 159 |             f"make -j{proc_count} defconfig", | 
 | 160 |             f"make INSTALL_HDR_PATH={prefix} headers_install", | 
 | 161 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 162 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 163 |     "LibVNC/libvncserver": PackageDef( | 
 | 164 |         rev="LibVNCServer-0.9.13", | 
 | 165 |         build_type="cmake", | 
 | 166 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 167 |     "leethomason/tinyxml2": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 168 |         rev="9.0.0", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 169 |         build_type="cmake", | 
 | 170 |     ), | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 171 |     # version from /meta-openembedded/meta-oe/recipes-devtools/boost-url/boost-url_git.bb # noqa: E501 | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 172 |     "CPPAlliance/url": PackageDef( | 
| Ed Tanous | ab640cd | 2022-02-03 16:33:27 -0800 | [diff] [blame] | 173 |         rev="d740a92d38e3a8f4d5b2153f53b82f1c98e312ab", | 
| Ed Tanous | eed466e | 2021-09-20 10:04:55 -0700 | [diff] [blame] | 174 |         build_type="custom", | 
 | 175 |         build_steps=[f"cp -a include/** {prefix}/include/"], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 176 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 177 |     "tristanpenman/valijson": PackageDef( | 
| Patrick Williams | c197783 | 2022-09-27 16:54:34 -0500 | [diff] [blame] | 178 |         rev="v0.7", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 179 |         build_type="cmake", | 
 | 180 |         config_flags=[ | 
| Patrick Williams | 0eedeed | 2021-02-06 19:06:09 -0600 | [diff] [blame] | 181 |             "-Dvalijson_BUILD_TESTS=0", | 
 | 182 |             "-Dvalijson_INSTALL_HEADERS=1", | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 183 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 184 |     ), | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 185 |     "open-power/pdbg": PackageDef(build_type="autoconf"), | 
 | 186 |     "openbmc/gpioplus": PackageDef( | 
 | 187 |         depends=["openbmc/stdplus"], | 
 | 188 |         build_type="meson", | 
 | 189 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 190 |             "-Dexamples=false", | 
 | 191 |             "-Dtests=disabled", | 
 | 192 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 193 |     ), | 
 | 194 |     "openbmc/phosphor-dbus-interfaces": PackageDef( | 
 | 195 |         depends=["openbmc/sdbusplus"], | 
 | 196 |         build_type="meson", | 
| William A. Kennington III | 4fe8777 | 2022-02-11 15:44:29 -0800 | [diff] [blame] | 197 |         config_flags=["-Dgenerate_md=false"], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 198 |     ), | 
 | 199 |     "openbmc/phosphor-logging": PackageDef( | 
 | 200 |         depends=[ | 
| Patrick Williams | 8339461 | 2021-02-03 07:12:50 -0600 | [diff] [blame] | 201 |             "USCiLab/cereal", | 
| Patrick Williams | 8339461 | 2021-02-03 07:12:50 -0600 | [diff] [blame] | 202 |             "openbmc/phosphor-dbus-interfaces", | 
 | 203 |             "openbmc/sdbusplus", | 
 | 204 |             "openbmc/sdeventplus", | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 205 |         ], | 
| Patrick Williams | f79ce4c | 2021-04-30 16:00:49 -0500 | [diff] [blame] | 206 |         build_type="meson", | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 207 |         config_flags=[ | 
| William A. Kennington III | 6c98f28 | 2022-10-05 13:37:04 -0700 | [diff] [blame] | 208 |             "-Dlibonly=true", | 
 | 209 |             "-Dtests=disabled", | 
| Patrick Williams | 5eabdae | 2022-04-14 14:34:34 -0500 | [diff] [blame] | 210 |             f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml", | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 211 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 212 |     ), | 
 | 213 |     "openbmc/phosphor-objmgr": PackageDef( | 
 | 214 |         depends=[ | 
| Brad Bishop | 11e5762 | 2022-09-14 16:10:25 -0400 | [diff] [blame] | 215 |             "CLIUtils/CLI11", | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 216 |             "boost", | 
| Patrick Williams | 8339461 | 2021-02-03 07:12:50 -0600 | [diff] [blame] | 217 |             "leethomason/tinyxml2", | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 218 |             "openbmc/phosphor-dbus-interfaces", | 
| Patrick Williams | 8339461 | 2021-02-03 07:12:50 -0600 | [diff] [blame] | 219 |             "openbmc/phosphor-logging", | 
 | 220 |             "openbmc/sdbusplus", | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 221 |         ], | 
| Brad Bishop | 1197e35 | 2021-08-03 19:25:46 -0400 | [diff] [blame] | 222 |         build_type="meson", | 
 | 223 |         config_flags=[ | 
 | 224 |             "-Dtests=disabled", | 
 | 225 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 226 |     ), | 
| Manojkiran Eda | 1c19e45 | 2022-10-03 11:01:59 +0530 | [diff] [blame] | 227 |     "openbmc/libpldm": PackageDef( | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 228 |         build_type="meson", | 
 | 229 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 230 |             "-Doem-ibm=enabled", | 
 | 231 |             "-Dtests=disabled", | 
 | 232 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 233 |     ), | 
 | 234 |     "openbmc/sdbusplus": PackageDef( | 
 | 235 |         build_type="meson", | 
 | 236 |         custom_post_dl=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 237 |             "cd tools", | 
 | 238 |             f"./setup.py install --root=/ --prefix={prefix}", | 
 | 239 |             "cd ..", | 
 | 240 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 241 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 242 |             "-Dexamples=disabled", | 
 | 243 |             "-Dtests=disabled", | 
 | 244 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 245 |     ), | 
 | 246 |     "openbmc/sdeventplus": PackageDef( | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 247 |         depends=[ | 
 | 248 |             "Naios/function2", | 
 | 249 |             "openbmc/stdplus", | 
 | 250 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 251 |         build_type="meson", | 
 | 252 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 253 |             "-Dexamples=false", | 
 | 254 |             "-Dtests=disabled", | 
 | 255 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 256 |     ), | 
 | 257 |     "openbmc/stdplus": PackageDef( | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 258 |         depends=[ | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 259 |             "fmtlib/fmt", | 
| William A. Kennington III | ca1bf0c | 2022-10-05 02:23:30 -0700 | [diff] [blame] | 260 |             "google/googletest", | 
 | 261 |             "Naios/function2", | 
| Patrick Williams | 70af95c | 2022-09-27 16:55:41 -0500 | [diff] [blame] | 262 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 263 |         build_type="meson", | 
 | 264 |         config_flags=[ | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 265 |             "-Dexamples=false", | 
 | 266 |             "-Dtests=disabled", | 
| William A. Kennington III | ca1bf0c | 2022-10-05 02:23:30 -0700 | [diff] [blame] | 267 |             "-Dgtest=enabled", | 
| Patrick Williams | aae36d1 | 2021-02-04 16:30:04 -0600 | [diff] [blame] | 268 |         ], | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 269 |     ), | 
 | 270 | }  # type: Dict[str, PackageDef] | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 271 |  | 
 | 272 | # Define common flags used for builds | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 273 | configure_flags = " ".join( | 
 | 274 |     [ | 
 | 275 |         f"--prefix={prefix}", | 
 | 276 |     ] | 
 | 277 | ) | 
 | 278 | cmake_flags = " ".join( | 
 | 279 |     [ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 280 |         "-DBUILD_SHARED_LIBS=ON", | 
| Patrick Williams | 0f2086b | 2021-02-05 06:49:49 -0600 | [diff] [blame] | 281 |         "-DCMAKE_BUILD_TYPE=RelWithDebInfo", | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 282 |         f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}", | 
| Patrick Williams | 0f2086b | 2021-02-05 06:49:49 -0600 | [diff] [blame] | 283 |         "-GNinja", | 
 | 284 |         "-DCMAKE_MAKE_PROGRAM=ninja", | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 285 |     ] | 
 | 286 | ) | 
 | 287 | meson_flags = " ".join( | 
 | 288 |     [ | 
 | 289 |         "--wrap-mode=nodownload", | 
 | 290 |         f"-Dprefix={prefix}", | 
 | 291 |     ] | 
 | 292 | ) | 
 | 293 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 294 |  | 
 | 295 | class Package(threading.Thread): | 
 | 296 |     """Class used to build the Docker stages for each package. | 
 | 297 |  | 
 | 298 |     Generally, this class should not be instantiated directly but through | 
 | 299 |     Package.generate_all(). | 
 | 300 |     """ | 
 | 301 |  | 
 | 302 |     # Copy the packages dictionary. | 
 | 303 |     packages = packages.copy() | 
 | 304 |  | 
 | 305 |     # Lock used for thread-safety. | 
 | 306 |     lock = threading.Lock() | 
 | 307 |  | 
 | 308 |     def __init__(self, pkg: str): | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 309 |         """pkg - The name of this package (ex. foo/bar )""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 310 |         super(Package, self).__init__() | 
 | 311 |  | 
 | 312 |         self.package = pkg | 
 | 313 |         self.exception = None  # type: Optional[Exception] | 
 | 314 |  | 
 | 315 |         # Reference to this package's | 
 | 316 |         self.pkg_def = Package.packages[pkg] | 
 | 317 |         self.pkg_def["__package"] = self | 
 | 318 |  | 
 | 319 |     def run(self) -> None: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 320 |         """Thread 'run' function.  Builds the Docker stage.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 321 |  | 
 | 322 |         # In case this package has no rev, fetch it from Github. | 
 | 323 |         self._update_rev() | 
 | 324 |  | 
 | 325 |         # Find all the Package objects that this package depends on. | 
 | 326 |         #   This section is locked because we are looking into another | 
 | 327 |         #   package's PackageDef dict, which could be being modified. | 
 | 328 |         Package.lock.acquire() | 
 | 329 |         deps: Iterable[Package] = [ | 
 | 330 |             Package.packages[deppkg]["__package"] | 
 | 331 |             for deppkg in self.pkg_def.get("depends", []) | 
 | 332 |         ] | 
 | 333 |         Package.lock.release() | 
 | 334 |  | 
 | 335 |         # Wait until all the depends finish building.  We need them complete | 
 | 336 |         # for the "COPY" commands. | 
 | 337 |         for deppkg in deps: | 
 | 338 |             deppkg.join() | 
 | 339 |  | 
 | 340 |         # Generate this package's Dockerfile. | 
 | 341 |         dockerfile = f""" | 
 | 342 | FROM {docker_base_img_name} | 
 | 343 | {self._df_copycmds()} | 
 | 344 | {self._df_build()} | 
 | 345 | """ | 
 | 346 |  | 
 | 347 |         # Generate the resulting tag name and save it to the PackageDef. | 
 | 348 |         #   This section is locked because we are modifying the PackageDef, | 
 | 349 |         #   which can be accessed by other threads. | 
 | 350 |         Package.lock.acquire() | 
 | 351 |         tag = Docker.tagname(self._stagename(), dockerfile) | 
 | 352 |         self.pkg_def["__tag"] = tag | 
 | 353 |         Package.lock.release() | 
 | 354 |  | 
 | 355 |         # Do the build / save any exceptions. | 
 | 356 |         try: | 
 | 357 |             Docker.build(self.package, tag, dockerfile) | 
 | 358 |         except Exception as e: | 
 | 359 |             self.exception = e | 
 | 360 |  | 
 | 361 |     @classmethod | 
 | 362 |     def generate_all(cls) -> None: | 
 | 363 |         """Ensure a Docker stage is created for all defined packages. | 
 | 364 |  | 
 | 365 |         These are done in parallel but with appropriate blocking per | 
 | 366 |         package 'depends' specifications. | 
 | 367 |         """ | 
 | 368 |  | 
 | 369 |         # Create a Package for each defined package. | 
 | 370 |         pkg_threads = [Package(p) for p in cls.packages.keys()] | 
 | 371 |  | 
 | 372 |         # Start building them all. | 
| Patrick Williams | 6dbd780 | 2021-02-20 08:34:10 -0600 | [diff] [blame] | 373 |         #   This section is locked because threads depend on each other, | 
 | 374 |         #   based on the packages, and they cannot 'join' on a thread | 
 | 375 |         #   which is not yet started.  Adding a lock here allows all the | 
 | 376 |         #   threads to start before they 'join' their dependencies. | 
 | 377 |         Package.lock.acquire() | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 378 |         for t in pkg_threads: | 
 | 379 |             t.start() | 
| Patrick Williams | 6dbd780 | 2021-02-20 08:34:10 -0600 | [diff] [blame] | 380 |         Package.lock.release() | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 381 |  | 
 | 382 |         # Wait for completion. | 
 | 383 |         for t in pkg_threads: | 
 | 384 |             t.join() | 
 | 385 |             # Check if the thread saved off its own exception. | 
 | 386 |             if t.exception: | 
 | 387 |                 print(f"Package {t.package} failed!", file=sys.stderr) | 
 | 388 |                 raise t.exception | 
 | 389 |  | 
 | 390 |     @staticmethod | 
 | 391 |     def df_all_copycmds() -> str: | 
 | 392 |         """Formulate the Dockerfile snippet necessary to copy all packages | 
 | 393 |         into the final image. | 
 | 394 |         """ | 
 | 395 |         return Package.df_copycmds_set(Package.packages.keys()) | 
 | 396 |  | 
 | 397 |     @classmethod | 
 | 398 |     def depcache(cls) -> str: | 
 | 399 |         """Create the contents of the '/tmp/depcache'. | 
 | 400 |         This file is a comma-separated list of "<pkg>:<rev>". | 
 | 401 |         """ | 
 | 402 |  | 
 | 403 |         # This needs to be sorted for consistency. | 
 | 404 |         depcache = "" | 
 | 405 |         for pkg in sorted(cls.packages.keys()): | 
 | 406 |             depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"]) | 
 | 407 |         return depcache | 
 | 408 |  | 
 | 409 |     def _update_rev(self) -> None: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 410 |         """Look up the HEAD for missing a static rev.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 411 |  | 
 | 412 |         if "rev" in self.pkg_def: | 
 | 413 |             return | 
 | 414 |  | 
| Patrick Williams | 65b21fb | 2021-02-12 21:21:14 -0600 | [diff] [blame] | 415 |         # Check if Jenkins/Gerrit gave us a revision and use it. | 
 | 416 |         if gerrit_project == self.package and gerrit_rev: | 
 | 417 |             print( | 
 | 418 |                 f"Found Gerrit revision for {self.package}: {gerrit_rev}", | 
 | 419 |                 file=sys.stderr, | 
 | 420 |             ) | 
 | 421 |             self.pkg_def["rev"] = gerrit_rev | 
 | 422 |             return | 
 | 423 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 424 |         # Ask Github for all the branches. | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 425 |         lookup = git( | 
 | 426 |             "ls-remote", "--heads", f"https://github.com/{self.package}" | 
 | 427 |         ) | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 428 |  | 
 | 429 |         # Find the branch matching {branch} (or fallback to master). | 
 | 430 |         #   This section is locked because we are modifying the PackageDef. | 
 | 431 |         Package.lock.acquire() | 
 | 432 |         for line in lookup.split("\n"): | 
 | 433 |             if f"refs/heads/{branch}" in line: | 
 | 434 |                 self.pkg_def["rev"] = line.split()[0] | 
| Patrick Williams | c7d7364 | 2022-10-11 17:22:06 -0500 | [diff] [blame] | 435 |             elif ( | 
 | 436 |                 "refs/heads/master" in line or "refs/heads/main" in line | 
 | 437 |             ) and "rev" not in self.pkg_def: | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 438 |                 self.pkg_def["rev"] = line.split()[0] | 
 | 439 |         Package.lock.release() | 
 | 440 |  | 
 | 441 |     def _stagename(self) -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 442 |         """Create a name for the Docker stage associated with this pkg.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 443 |         return self.package.replace("/", "-").lower() | 
 | 444 |  | 
 | 445 |     def _url(self) -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 446 |         """Get the URL for this package.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 447 |         rev = self.pkg_def["rev"] | 
 | 448 |  | 
 | 449 |         # If the lambda exists, call it. | 
 | 450 |         if "url" in self.pkg_def: | 
 | 451 |             return self.pkg_def["url"](self.package, rev) | 
 | 452 |  | 
 | 453 |         # Default to the github archive URL. | 
 | 454 |         return f"https://github.com/{self.package}/archive/{rev}.tar.gz" | 
 | 455 |  | 
 | 456 |     def _cmd_download(self) -> str: | 
 | 457 |         """Formulate the command necessary to download and unpack to source.""" | 
 | 458 |  | 
 | 459 |         url = self._url() | 
 | 460 |         if ".tar." not in url: | 
 | 461 |             raise NotImplementedError( | 
 | 462 |                 f"Unhandled download type for {self.package}: {url}" | 
 | 463 |             ) | 
 | 464 |  | 
 | 465 |         cmd = f"curl -L {url} | tar -x" | 
 | 466 |  | 
 | 467 |         if url.endswith(".bz2"): | 
 | 468 |             cmd += "j" | 
 | 469 |         elif url.endswith(".gz"): | 
 | 470 |             cmd += "z" | 
 | 471 |         else: | 
 | 472 |             raise NotImplementedError( | 
 | 473 |                 f"Unknown tar flags needed for {self.package}: {url}" | 
 | 474 |             ) | 
 | 475 |  | 
 | 476 |         return cmd | 
 | 477 |  | 
 | 478 |     def _cmd_cd_srcdir(self) -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 479 |         """Formulate the command necessary to 'cd' into the source dir.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 480 |         return f"cd {self.package.split('/')[-1]}*" | 
 | 481 |  | 
 | 482 |     def _df_copycmds(self) -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 483 |         """Formulate the dockerfile snippet necessary to COPY all depends.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 484 |  | 
 | 485 |         if "depends" not in self.pkg_def: | 
 | 486 |             return "" | 
 | 487 |         return Package.df_copycmds_set(self.pkg_def["depends"]) | 
 | 488 |  | 
 | 489 |     @staticmethod | 
 | 490 |     def df_copycmds_set(pkgs: Iterable[str]) -> str: | 
 | 491 |         """Formulate the Dockerfile snippet necessary to COPY a set of | 
 | 492 |         packages into a Docker stage. | 
 | 493 |         """ | 
 | 494 |  | 
 | 495 |         copy_cmds = "" | 
 | 496 |  | 
 | 497 |         # Sort the packages for consistency. | 
 | 498 |         for p in sorted(pkgs): | 
 | 499 |             tag = Package.packages[p]["__tag"] | 
 | 500 |             copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n" | 
 | 501 |             # Workaround for upstream docker bug and multiple COPY cmds | 
 | 502 |             # https://github.com/moby/moby/issues/37965 | 
 | 503 |             copy_cmds += "RUN true\n" | 
 | 504 |  | 
 | 505 |         return copy_cmds | 
 | 506 |  | 
 | 507 |     def _df_build(self) -> str: | 
 | 508 |         """Formulate the Dockerfile snippet necessary to download, build, and | 
 | 509 |         install a package into a Docker stage. | 
 | 510 |         """ | 
 | 511 |  | 
 | 512 |         # Download and extract source. | 
 | 513 |         result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && " | 
 | 514 |  | 
 | 515 |         # Handle 'custom_post_dl' commands. | 
 | 516 |         custom_post_dl = self.pkg_def.get("custom_post_dl") | 
 | 517 |         if custom_post_dl: | 
 | 518 |             result += " && ".join(custom_post_dl) + " && " | 
 | 519 |  | 
 | 520 |         # Build and install package based on 'build_type'. | 
 | 521 |         build_type = self.pkg_def["build_type"] | 
 | 522 |         if build_type == "autoconf": | 
 | 523 |             result += self._cmd_build_autoconf() | 
 | 524 |         elif build_type == "cmake": | 
 | 525 |             result += self._cmd_build_cmake() | 
 | 526 |         elif build_type == "custom": | 
 | 527 |             result += self._cmd_build_custom() | 
 | 528 |         elif build_type == "make": | 
 | 529 |             result += self._cmd_build_make() | 
 | 530 |         elif build_type == "meson": | 
 | 531 |             result += self._cmd_build_meson() | 
 | 532 |         else: | 
 | 533 |             raise NotImplementedError( | 
 | 534 |                 f"Unhandled build type for {self.package}: {build_type}" | 
 | 535 |             ) | 
 | 536 |  | 
| Patrick Williams | 6bce2ca | 2021-02-12 21:13:37 -0600 | [diff] [blame] | 537 |         # Handle 'custom_post_install' commands. | 
 | 538 |         custom_post_install = self.pkg_def.get("custom_post_install") | 
 | 539 |         if custom_post_install: | 
 | 540 |             result += " && " + " && ".join(custom_post_install) | 
 | 541 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 542 |         return result | 
 | 543 |  | 
 | 544 |     def _cmd_build_autoconf(self) -> str: | 
 | 545 |         options = " ".join(self.pkg_def.get("config_flags", [])) | 
 | 546 |         env = " ".join(self.pkg_def.get("config_env", [])) | 
 | 547 |         result = "./bootstrap.sh && " | 
 | 548 |         result += f"{env} ./configure {configure_flags} {options} && " | 
 | 549 |         result += f"make -j{proc_count} && make install" | 
 | 550 |         return result | 
 | 551 |  | 
 | 552 |     def _cmd_build_cmake(self) -> str: | 
 | 553 |         options = " ".join(self.pkg_def.get("config_flags", [])) | 
 | 554 |         env = " ".join(self.pkg_def.get("config_env", [])) | 
 | 555 |         result = "mkdir builddir && cd builddir && " | 
 | 556 |         result += f"{env} cmake {cmake_flags} {options} .. && " | 
 | 557 |         result += "cmake --build . --target all && " | 
 | 558 |         result += "cmake --build . --target install && " | 
 | 559 |         result += "cd .." | 
 | 560 |         return result | 
 | 561 |  | 
 | 562 |     def _cmd_build_custom(self) -> str: | 
 | 563 |         return " && ".join(self.pkg_def.get("build_steps", [])) | 
 | 564 |  | 
 | 565 |     def _cmd_build_make(self) -> str: | 
 | 566 |         return f"make -j{proc_count} && make install" | 
 | 567 |  | 
 | 568 |     def _cmd_build_meson(self) -> str: | 
 | 569 |         options = " ".join(self.pkg_def.get("config_flags", [])) | 
 | 570 |         env = " ".join(self.pkg_def.get("config_env", [])) | 
 | 571 |         result = f"{env} meson builddir {meson_flags} {options} && " | 
 | 572 |         result += "ninja -C builddir && ninja -C builddir install" | 
 | 573 |         return result | 
 | 574 |  | 
 | 575 |  | 
 | 576 | class Docker: | 
 | 577 |     """Class to assist with Docker interactions.  All methods are static.""" | 
 | 578 |  | 
 | 579 |     @staticmethod | 
 | 580 |     def timestamp() -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 581 |         """Generate a timestamp for today using the ISO week.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 582 |         today = date.today().isocalendar() | 
 | 583 |         return f"{today[0]}-W{today[1]:02}" | 
 | 584 |  | 
 | 585 |     @staticmethod | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 586 |     def tagname(pkgname: Optional[str], dockerfile: str) -> str: | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 587 |         """Generate a tag name for a package using a hash of the Dockerfile.""" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 588 |         result = docker_image_name | 
 | 589 |         if pkgname: | 
 | 590 |             result += "-" + pkgname | 
 | 591 |  | 
 | 592 |         result += ":" + Docker.timestamp() | 
 | 593 |         result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16] | 
 | 594 |  | 
 | 595 |         return result | 
 | 596 |  | 
 | 597 |     @staticmethod | 
 | 598 |     def build(pkg: str, tag: str, dockerfile: str) -> None: | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 599 |         """Build a docker image using the Dockerfile and tagging it with 'tag'. | 
 | 600 |         """ | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 601 |  | 
 | 602 |         # If we're not forcing builds, check if it already exists and skip. | 
 | 603 |         if not force_build: | 
 | 604 |             if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'): | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 605 |                 print( | 
 | 606 |                     f"Image {tag} already exists.  Skipping.", file=sys.stderr | 
 | 607 |                 ) | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 608 |                 return | 
 | 609 |  | 
 | 610 |         # Build it. | 
 | 611 |         #   Capture the output of the 'docker build' command and send it to | 
 | 612 |         #   stderr (prefixed with the package name).  This allows us to see | 
 | 613 |         #   progress but not polute stdout.  Later on we output the final | 
 | 614 |         #   docker tag to stdout and we want to keep that pristine. | 
 | 615 |         # | 
 | 616 |         #   Other unusual flags: | 
 | 617 |         #       --no-cache: Bypass the Docker cache if 'force_build'. | 
 | 618 |         #       --force-rm: Clean up Docker processes if they fail. | 
 | 619 |         docker.build( | 
 | 620 |             proxy_args, | 
 | 621 |             "--network=host", | 
 | 622 |             "--force-rm", | 
 | 623 |             "--no-cache=true" if force_build else "--no-cache=false", | 
 | 624 |             "-t", | 
 | 625 |             tag, | 
 | 626 |             "-", | 
 | 627 |             _in=dockerfile, | 
 | 628 |             _out=( | 
 | 629 |                 lambda line: print( | 
 | 630 |                     pkg + ":", line, end="", file=sys.stderr, flush=True | 
 | 631 |                 ) | 
 | 632 |             ), | 
 | 633 |         ) | 
 | 634 |  | 
 | 635 |  | 
 | 636 | # Read a bunch of environment variables. | 
| Patrick Williams | 05fb2a0 | 2022-10-11 17:22:33 -0500 | [diff] [blame] | 637 | docker_image_name = os.environ.get( | 
 | 638 |     "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test" | 
 | 639 | ) | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 640 | force_build = os.environ.get("FORCE_DOCKER_BUILD") | 
 | 641 | is_automated_ci_build = os.environ.get("BUILD_URL", False) | 
| Patrick Williams | 5b08dc6 | 2022-09-27 16:36:57 -0500 | [diff] [blame] | 642 | distro = os.environ.get("DISTRO", "ubuntu:kinetic") | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 643 | branch = os.environ.get("BRANCH", "master") | 
 | 644 | ubuntu_mirror = os.environ.get("UBUNTU_MIRROR") | 
 | 645 | http_proxy = os.environ.get("http_proxy") | 
 | 646 |  | 
| Patrick Williams | 65b21fb | 2021-02-12 21:21:14 -0600 | [diff] [blame] | 647 | gerrit_project = os.environ.get("GERRIT_PROJECT") | 
 | 648 | gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION") | 
 | 649 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 650 | # Set up some common variables. | 
 | 651 | username = os.environ.get("USER", "root") | 
 | 652 | homedir = os.environ.get("HOME", "/root") | 
 | 653 | gid = os.getgid() | 
 | 654 | uid = os.getuid() | 
 | 655 |  | 
| Josh Lehan | 6825a01 | 2022-03-17 18:31:39 -0700 | [diff] [blame] | 656 | # Use well-known constants if user is root | 
 | 657 | if username == "root": | 
 | 658 |     homedir = "/root" | 
 | 659 |     gid = 0 | 
 | 660 |     uid = 0 | 
 | 661 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 662 | # Determine the architecture for Docker. | 
 | 663 | arch = uname("-m").strip() | 
 | 664 | if arch == "ppc64le": | 
 | 665 |     docker_base = "ppc64le/" | 
 | 666 | elif arch == "x86_64": | 
 | 667 |     docker_base = "" | 
| Thang Q. Nguyen | 051b05b | 2021-12-10 08:30:35 +0000 | [diff] [blame] | 668 | elif arch == "aarch64": | 
| Thang Q. Nguyen | f98f1a8 | 2021-12-22 01:59:19 +0000 | [diff] [blame] | 669 |     docker_base = "arm64v8/" | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 670 | else: | 
 | 671 |     print( | 
 | 672 |         f"Unsupported system architecture({arch}) found for docker image", | 
 | 673 |         file=sys.stderr, | 
 | 674 |     ) | 
 | 675 |     sys.exit(1) | 
 | 676 |  | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 677 | # Special flags if setting up a deb mirror. | 
 | 678 | mirror = "" | 
 | 679 | if "ubuntu" in distro and ubuntu_mirror: | 
 | 680 |     mirror = f""" | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 681 | RUN echo "deb {ubuntu_mirror} \ | 
 | 682 |         $(. /etc/os-release && echo $VERSION_CODENAME) \ | 
 | 683 |         main restricted universe multiverse" > /etc/apt/sources.list && \\ | 
 | 684 |     echo "deb {ubuntu_mirror} \ | 
 | 685 |         $(. /etc/os-release && echo $VERSION_CODENAME)-updates \ | 
 | 686 |             main restricted universe multiverse" >> /etc/apt/sources.list && \\ | 
 | 687 |     echo "deb {ubuntu_mirror} \ | 
 | 688 |         $(. /etc/os-release && echo $VERSION_CODENAME)-security \ | 
 | 689 |             main restricted universe multiverse" >> /etc/apt/sources.list && \\ | 
 | 690 |     echo "deb {ubuntu_mirror} \ | 
 | 691 |         $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \ | 
 | 692 |             main restricted universe multiverse" >> /etc/apt/sources.list && \\ | 
 | 693 |     echo "deb {ubuntu_mirror} \ | 
 | 694 |         $(. /etc/os-release && echo $VERSION_CODENAME)-backports \ | 
 | 695 |             main restricted universe multiverse" >> /etc/apt/sources.list | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 696 | """ | 
 | 697 |  | 
 | 698 | # Special flags for proxying. | 
 | 699 | proxy_cmd = "" | 
| Adrian Ambrożewicz | 34ec77e | 2021-06-02 10:23:38 +0200 | [diff] [blame] | 700 | proxy_keyserver = "" | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 701 | proxy_args = [] | 
 | 702 | if http_proxy: | 
 | 703 |     proxy_cmd = f""" | 
 | 704 | RUN echo "[http]" >> {homedir}/.gitconfig && \ | 
 | 705 |     echo "proxy = {http_proxy}" >> {homedir}/.gitconfig | 
 | 706 | """ | 
| Adrian Ambrożewicz | 34ec77e | 2021-06-02 10:23:38 +0200 | [diff] [blame] | 707 |     proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}" | 
 | 708 |  | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 709 |     proxy_args.extend( | 
 | 710 |         [ | 
 | 711 |             "--build-arg", | 
 | 712 |             f"http_proxy={http_proxy}", | 
 | 713 |             "--build-arg", | 
| Lei YU | d461cd6 | 2021-02-18 14:25:49 +0800 | [diff] [blame] | 714 |             f"https_proxy={http_proxy}", | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 715 |         ] | 
 | 716 |     ) | 
 | 717 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 718 | # Create base Dockerfile. | 
| Patrick Williams | a18d9c5 | 2021-02-05 09:52:26 -0600 | [diff] [blame] | 719 | dockerfile_base = f""" | 
 | 720 | FROM {docker_base}{distro} | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 721 |  | 
 | 722 | {mirror} | 
 | 723 |  | 
 | 724 | ENV DEBIAN_FRONTEND noninteractive | 
 | 725 |  | 
| Patrick Williams | 8949d3c | 2022-04-27 16:41:27 -0500 | [diff] [blame] | 726 | ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/" | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 727 |  | 
| Patrick Williams | bb16ac1 | 2021-04-12 12:23:51 -0500 | [diff] [blame] | 728 | # Sometimes the ubuntu key expires and we need a way to force an execution | 
 | 729 | # of the apt-get commands for the dbgsym-keyring.  When this happens we see | 
 | 730 | # an error like: "Release: The following signatures were invalid:" | 
 | 731 | # Insert a bogus echo that we can change here when we get this error to force | 
 | 732 | # the update. | 
 | 733 | RUN echo "ubuntu keyserver rev as of 2021-04-21" | 
 | 734 |  | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 735 | # We need the keys to be imported for dbgsym repos | 
 | 736 | # New releases have a package, older ones fall back to manual fetching | 
 | 737 | # https://wiki.ubuntu.com/Debug%20Symbol%20Packages | 
| Patrick Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 738 | RUN apt-get update && apt-get dist-upgrade -yy && \ | 
| Patrick Williams | f79ce4c | 2021-04-30 16:00:49 -0500 | [diff] [blame] | 739 |     ( apt-get install gpgv ubuntu-dbgsym-keyring || \ | 
| Patrick Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 740 |         ( apt-get install -yy dirmngr && \ | 
 | 741 |           apt-key adv --keyserver keyserver.ubuntu.com \ | 
| Adrian Ambrożewicz | 34ec77e | 2021-06-02 10:23:38 +0200 | [diff] [blame] | 742 |                       {proxy_keyserver} \ | 
| Patrick Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 743 |                       --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) ) | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 744 |  | 
 | 745 | # Parse the current repo list into a debug repo list | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 746 | RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \ | 
 | 747 |         /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 748 |  | 
 | 749 | # Remove non-existent debug repos | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 750 | RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 751 |  | 
 | 752 | RUN cat /etc/apt/sources.list.d/debug.list | 
 | 753 |  | 
 | 754 | RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \ | 
| Patrick Williams | 274e3a9 | 2022-09-08 07:08:31 -0500 | [diff] [blame] | 755 |     gcc-12 \ | 
 | 756 |     g++-12 \ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 757 |     libc6-dbg \ | 
 | 758 |     libc6-dev \ | 
 | 759 |     libtool \ | 
 | 760 |     bison \ | 
 | 761 |     libdbus-1-dev \ | 
 | 762 |     flex \ | 
 | 763 |     cmake \ | 
 | 764 |     python3 \ | 
 | 765 |     python3-dev\ | 
 | 766 |     python3-yaml \ | 
 | 767 |     python3-mako \ | 
 | 768 |     python3-pip \ | 
 | 769 |     python3-setuptools \ | 
 | 770 |     python3-git \ | 
 | 771 |     python3-socks \ | 
 | 772 |     pkg-config \ | 
 | 773 |     autoconf \ | 
 | 774 |     autoconf-archive \ | 
 | 775 |     libsystemd-dev \ | 
 | 776 |     systemd \ | 
 | 777 |     libssl-dev \ | 
 | 778 |     libevdev-dev \ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 779 |     libjpeg-dev \ | 
 | 780 |     libpng-dev \ | 
 | 781 |     ninja-build \ | 
 | 782 |     sudo \ | 
 | 783 |     curl \ | 
 | 784 |     git \ | 
 | 785 |     dbus \ | 
 | 786 |     iputils-ping \ | 
| Patrick Williams | 27a646b | 2022-09-27 16:57:44 -0500 | [diff] [blame] | 787 |     clang-15 \ | 
 | 788 |     clang-format-15 \ | 
 | 789 |     clang-tidy-15 \ | 
 | 790 |     clang-tools-15 \ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 791 |     shellcheck \ | 
 | 792 |     npm \ | 
 | 793 |     iproute2 \ | 
 | 794 |     libnl-3-dev \ | 
 | 795 |     libnl-genl-3-dev \ | 
 | 796 |     libconfig++-dev \ | 
 | 797 |     libsnmp-dev \ | 
 | 798 |     valgrind \ | 
 | 799 |     valgrind-dbg \ | 
 | 800 |     libpam0g-dev \ | 
 | 801 |     xxd \ | 
 | 802 |     libi2c-dev \ | 
 | 803 |     wget \ | 
 | 804 |     libldap2-dev \ | 
 | 805 |     libprotobuf-dev \ | 
| William A. Kennington III | dafe752 | 2021-05-28 01:51:06 -0700 | [diff] [blame] | 806 |     liburing-dev \ | 
| Patrick Williams | 8949d3c | 2022-04-27 16:41:27 -0500 | [diff] [blame] | 807 |     liburing2-dbgsym \ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 808 |     libperlio-gzip-perl \ | 
 | 809 |     libjson-perl \ | 
 | 810 |     protobuf-compiler \ | 
 | 811 |     libgpiod-dev \ | 
 | 812 |     device-tree-compiler \ | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 813 |     libpciaccess-dev \ | 
 | 814 |     libmimetic-dev \ | 
 | 815 |     libxml2-utils \ | 
| Patrick Williams | 0eedeed | 2021-02-06 19:06:09 -0600 | [diff] [blame] | 816 |     libxml-simple-perl \ | 
| John Wedig | 9adf68d | 2021-11-16 14:00:39 -0800 | [diff] [blame] | 817 |     rsync \ | 
 | 818 |     libcryptsetup-dev | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 819 |  | 
| Manojkiran Eda | 87111bb | 2021-08-14 11:26:16 +0530 | [diff] [blame] | 820 | RUN npm install -g eslint@latest eslint-plugin-json@latest | 
 | 821 |  | 
| Patrick Williams | 5b08dc6 | 2022-09-27 16:36:57 -0500 | [diff] [blame] | 822 | # Kinetic comes with GCC-12, so skip this. | 
 | 823 | #RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 \ | 
 | 824 | #  --slave /usr/bin/g++ g++ /usr/bin/g++-12 \ | 
 | 825 | #  --slave /usr/bin/gcov gcov /usr/bin/gcov-12 \ | 
 | 826 | #  --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-12 \ | 
 | 827 | #  --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-12 | 
 | 828 | #RUN update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-12 12 | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 829 |  | 
| Patrick Williams | 27a646b | 2022-09-27 16:57:44 -0500 | [diff] [blame] | 830 | RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 1000 \ | 
 | 831 |   --slave /usr/bin/clang++ clang++ /usr/bin/clang++-15 \ | 
 | 832 |   --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-15 \ | 
 | 833 |   --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-15 \ | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 834 |   --slave /usr/bin/run-clang-tidy run-clang-tidy.py \ | 
 | 835 |         /usr/bin/run-clang-tidy-15 \ | 
| Patrick Williams | 27a646b | 2022-09-27 16:57:44 -0500 | [diff] [blame] | 836 |   --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-15 | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 837 |  | 
| Patrick Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 838 | """ | 
 | 839 |  | 
 | 840 | if is_automated_ci_build: | 
 | 841 |     dockerfile_base += f""" | 
 | 842 | # Run an arbitrary command to polute the docker cache regularly force us | 
 | 843 | # to re-run `apt-get update` daily. | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 844 | RUN echo {Docker.timestamp()} | 
| Patrick Williams | 5083743 | 2021-02-06 12:24:05 -0600 | [diff] [blame] | 845 | RUN apt-get update && apt-get dist-upgrade -yy | 
 | 846 |  | 
 | 847 | """ | 
 | 848 |  | 
| Patrick Williams | 41d8621 | 2022-11-25 18:28:43 -0600 | [diff] [blame] | 849 | dockerfile_base += """ | 
| Patrick Williams | bc0d5a3 | 2022-12-05 16:26:00 -0600 | [diff] [blame] | 850 | RUN pip3 install codespell | 
| Patrick Williams | c5ad7ff | 2022-12-05 10:21:40 -0600 | [diff] [blame^] | 851 | RUN pip3 install flake8 | 
| Patrick Williams | bc0d5a3 | 2022-12-05 16:26:00 -0600 | [diff] [blame] | 852 | RUN pip3 install gitlint | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 853 | RUN pip3 install inflection | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 854 | RUN pip3 install jsonschema | 
| Michael Shen | fb612a5 | 2022-08-05 00:58:31 +0000 | [diff] [blame] | 855 | RUN pip3 install meson==0.63.0 | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 856 | RUN pip3 install protobuf | 
| Ed Tanous | ca8c4a8 | 2022-02-08 13:58:22 -0800 | [diff] [blame] | 857 | RUN pip3 install requests | 
| Ed Tanous | fb9948a | 2022-06-21 09:10:24 -0700 | [diff] [blame] | 858 | """ | 
 | 859 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 860 | # Build the base and stage docker images. | 
 | 861 | docker_base_img_name = Docker.tagname("base", dockerfile_base) | 
 | 862 | Docker.build("base", docker_base_img_name, dockerfile_base) | 
 | 863 | Package.generate_all() | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 864 |  | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 865 | # Create the final Dockerfile. | 
| Patrick Williams | a18d9c5 | 2021-02-05 09:52:26 -0600 | [diff] [blame] | 866 | dockerfile = f""" | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 867 | # Build the final output image | 
| Patrick Williams | a18d9c5 | 2021-02-05 09:52:26 -0600 | [diff] [blame] | 868 | FROM {docker_base_img_name} | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 869 | {Package.df_all_copycmds()} | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 870 |  | 
 | 871 | # Some of our infrastructure still relies on the presence of this file | 
 | 872 | # even though it is no longer needed to rebuild the docker environment | 
 | 873 | # NOTE: The file is sorted to ensure the ordering is stable. | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 874 | RUN echo '{Package.depcache()}' > /tmp/depcache | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 875 |  | 
 | 876 | # Final configuration for the workspace | 
| Josh Lehan | 6825a01 | 2022-03-17 18:31:39 -0700 | [diff] [blame] | 877 | RUN grep -q {gid} /etc/group || groupadd -f -g {gid} {username} | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 878 | RUN mkdir -p "{os.path.dirname(homedir)}" | 
| Patrick Williams | e08ffba | 2022-12-05 10:33:46 -0600 | [diff] [blame] | 879 | RUN grep -q {uid} /etc/passwd || \ | 
 | 880 |         useradd -d {homedir} -m -u {uid} -g {gid} {username} | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 881 | RUN sed -i '1iDefaults umask=000' /etc/sudoers | 
 | 882 | RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers | 
 | 883 |  | 
| Andrew Geissler | 305a9a5 | 2021-04-07 11:08:40 -0500 | [diff] [blame] | 884 | # Ensure user has ability to write to /usr/local for different tool | 
 | 885 | # and data installs | 
| Andrew Geissler | 7bb00b1 | 2021-05-10 15:12:08 -0500 | [diff] [blame] | 886 | RUN chown -R {username}:{username} /usr/local/share | 
| Andrew Geissler | 305a9a5 | 2021-04-07 11:08:40 -0500 | [diff] [blame] | 887 |  | 
| Patrick Williams | 02871c9 | 2021-02-01 20:57:19 -0600 | [diff] [blame] | 888 | {proxy_cmd} | 
 | 889 |  | 
 | 890 | RUN /bin/bash | 
 | 891 | """ | 
 | 892 |  | 
| Patrick Williams | a18d9c5 | 2021-02-05 09:52:26 -0600 | [diff] [blame] | 893 | # Do the final docker build | 
| Patrick Williams | ee3c9ee | 2021-02-12 20:56:01 -0600 | [diff] [blame] | 894 | docker_final_img_name = Docker.tagname(None, dockerfile) | 
 | 895 | Docker.build("final", docker_final_img_name, dockerfile) | 
 | 896 |  | 
| Patrick Williams | 00536fb | 2021-02-11 14:28:49 -0600 | [diff] [blame] | 897 | # Print the tag of the final image. | 
 | 898 | print(docker_final_img_name) |