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