blob: f7de1377ae406d7ebdb47d91a76387b3d713019c [file] [log] [blame]
Patrick Williams02871c92021-02-01 20:57:19 -06001#!/usr/bin/env python3
2#
3# Build the required docker image to run package unit tests
4#
5# Script Variables:
6# DOCKER_IMG_NAME: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# DISTRO: <optional, the distro to build a docker image against>
Patrick Williams50837432021-02-06 12:24:05 -06009# FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker
10# images to be rebuilt rather than reusing caches.>
11# BUILD_URL: <optional, used to detect running under CI context
12# (ex. Jenkins)>
Patrick Williams02871c92021-02-01 20:57:19 -060013# BRANCH: <optional, branch to build from each of the openbmc/
14# repositories>
15# default is master, which will be used if input branch not
16# provided or not found
17# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the
18# default ones in /etc/apt/sources.list>
19# default is empty, and no mirror is used.
20# http_proxy The HTTP address of the proxy server to connect to.
21# Default: "", proxy is not setup if this is not set
22
23import os
Andrew Geisslerf3d27e62024-04-09 15:24:49 -050024import re
Patrick Williams02871c92021-02-01 20:57:19 -060025import sys
Patrick Williamsb16f3e22021-02-06 08:16:47 -060026import threading
Patrick Williamsa18d9c52021-02-05 09:52:26 -060027from datetime import date
28from hashlib import sha256
Patrick Williamse08ffba2022-12-05 10:33:46 -060029
30# typing.Dict is used for type-hints.
31from typing import Any, Callable, Dict, Iterable, Optional # noqa: F401
Patrick Williams02871c92021-02-01 20:57:19 -060032
Patrick Williams41d86212022-11-25 18:28:43 -060033from sh import docker, git, nproc, uname # type: ignore
34
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060035try:
36 # Python before 3.8 doesn't have TypedDict, so reroute to standard 'dict'.
37 from typing import TypedDict
Patrick Williams41d86212022-11-25 18:28:43 -060038except Exception:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060039
40 class TypedDict(dict): # type: ignore
41 # We need to do this to eat the 'total' argument.
Patrick Williams41d86212022-11-25 18:28:43 -060042 def __init_subclass__(cls, **kwargs: Any) -> None:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060043 super().__init_subclass__()
44
45
46# Declare some variables used in package definitions.
Patrick Williamsaae36d12021-02-04 16:30:04 -060047prefix = "/usr/local"
Patrick Williams02871c92021-02-01 20:57:19 -060048proc_count = nproc().strip()
Patrick Williams02871c92021-02-01 20:57:19 -060049
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060050
51class PackageDef(TypedDict, total=False):
Patrick Williams05fb2a02022-10-11 17:22:33 -050052 """Package Definition for packages dictionary."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060053
54 # rev [optional]: Revision of package to use.
55 rev: str
56 # url [optional]: lambda function to create URL: (package, rev) -> url.
57 url: Callable[[str, str], str]
58 # depends [optional]: List of package dependencies.
59 depends: Iterable[str]
60 # build_type [required]: Build type used for package.
61 # Currently supported: autoconf, cmake, custom, make, meson
62 build_type: str
63 # build_steps [optional]: Steps to run for 'custom' build_type.
64 build_steps: Iterable[str]
65 # config_flags [optional]: List of options to pass configuration tool.
66 config_flags: Iterable[str]
67 # config_env [optional]: List of environment variables to set for config.
68 config_env: Iterable[str]
69 # custom_post_dl [optional]: List of steps to run after download, but
70 # before config / build / install.
71 custom_post_dl: Iterable[str]
Patrick Williams6bce2ca2021-02-12 21:13:37 -060072 # custom_post_install [optional]: List of steps to run after install.
73 custom_post_install: Iterable[str]
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060074
75 # __tag [private]: Generated Docker tag name for package stage.
76 __tag: str
77 # __package [private]: Package object associated with this package.
78 __package: Any # Type is Package, but not defined yet.
79
Patrick Williams02871c92021-02-01 20:57:19 -060080
Patrick Williams72043242021-02-02 10:31:45 -060081# Packages to include in image.
82packages = {
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060083 "boost": PackageDef(
Andrew Geissler05806f52024-01-07 08:39:29 -060084 rev="1.84.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060085 url=(
Andrew Geissler38b46872024-01-07 07:20:27 -060086 lambda pkg, rev: f"https://github.com/boostorg/{pkg}/releases/download/{pkg}-{rev}/{pkg}-{rev}.tar.gz"
Patrick Williams2abc4a42021-02-03 06:11:40 -060087 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060088 build_type="custom",
89 build_steps=[
Patrick Williamse08ffba2022-12-05 10:33:46 -060090 (
Andrew Geissler38b46872024-01-07 07:20:27 -060091 "./bootstrap.sh"
Ed Tanous42ff4322023-10-04 17:39:08 -070092 f" --prefix={prefix} --with-libraries=context,coroutine,url"
Patrick Williamse08ffba2022-12-05 10:33:46 -060093 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -060094 "./b2",
Michal Orzel04770cc2024-06-18 10:38:22 +020095 f"./b2 install --prefix={prefix} valgrind=on",
Patrick Williamsaae36d12021-02-04 16:30:04 -060096 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060097 ),
98 "USCiLab/cereal": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -050099 rev="v1.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600100 build_type="custom",
101 build_steps=[f"cp -a include/cereal/ {prefix}/include/"],
102 ),
Ed Tanousc7198552022-07-01 08:15:50 -0700103 "danmar/cppcheck": PackageDef(
Patrick Williams51021782023-12-05 19:10:44 -0600104 rev="2.12.1",
Ed Tanousc7198552022-07-01 08:15:50 -0700105 build_type="cmake",
106 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600107 "CLIUtils/CLI11": PackageDef(
Patrick Williamsfc397332023-07-17 11:35:43 -0500108 rev="v2.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600109 build_type="cmake",
110 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600111 "-DBUILD_TESTING=OFF",
112 "-DCLI11_BUILD_DOCS=OFF",
113 "-DCLI11_BUILD_EXAMPLES=OFF",
114 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600115 ),
116 "fmtlib/fmt": PackageDef(
Patrick Williamsc061e072023-12-05 19:11:21 -0600117 rev="10.1.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600118 build_type="cmake",
119 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600120 "-DFMT_DOC=OFF",
121 "-DFMT_TEST=OFF",
122 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600123 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600124 "Naios/function2": PackageDef(
Patrick Williamscb099742023-12-05 19:12:09 -0600125 rev="4.2.4",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600126 build_type="custom",
127 build_steps=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600128 f"mkdir {prefix}/include/function2",
129 f"cp include/function2/function2.hpp {prefix}/include/function2/",
130 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600131 ),
132 "google/googletest": PackageDef(
Patrick Williamsd11e9c72024-08-17 06:44:00 -0400133 rev="v1.15.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600134 build_type="cmake",
William A. Kennington III4dd32c02021-05-28 01:58:13 -0700135 config_env=["CXXFLAGS=-std=c++20"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600136 config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"],
137 ),
Ed Tanous178b4b22023-06-15 09:03:11 -0700138 "nghttp2/nghttp2": PackageDef(
Ed Tanousabb106a2024-04-04 10:00:02 -0700139 rev="v1.61.0",
Ed Tanous178b4b22023-06-15 09:03:11 -0700140 build_type="cmake",
141 config_env=["CXXFLAGS=-std=c++20"],
142 config_flags=[
143 "-DENABLE_LIB_ONLY=ON",
144 "-DENABLE_STATIC_LIB=ON",
145 ],
146 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600147 "nlohmann/json": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500148 rev="v3.11.2",
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600149 build_type="cmake",
150 config_flags=["-DJSON_BuildTests=OFF"],
151 custom_post_install=[
Patrick Williamse08ffba2022-12-05 10:33:46 -0600152 (
153 f"ln -s {prefix}/include/nlohmann/json.hpp"
154 f" {prefix}/include/json.hpp"
155 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -0600156 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600157 ),
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100158 "json-c/json-c": PackageDef(
Patrick Williamseee65be2023-12-05 19:17:01 -0600159 rev="json-c-0.17-20230812",
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100160 build_type="cmake",
161 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600162 "LibVNC/libvncserver": PackageDef(
Patrick Williamsc0421322023-12-05 19:18:57 -0600163 rev="LibVNCServer-0.9.14",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600164 build_type="cmake",
165 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600166 "leethomason/tinyxml2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500167 rev="9.0.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600168 build_type="cmake",
169 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600170 "tristanpenman/valijson": PackageDef(
Patrick Williams5a2c1132023-12-05 19:20:36 -0600171 rev="v1.0.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600172 build_type="cmake",
173 config_flags=[
Patrick Williams0eedeed2021-02-06 19:06:09 -0600174 "-Dvalijson_BUILD_TESTS=0",
175 "-Dvalijson_INSTALL_HEADERS=1",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600176 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600177 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600178 "open-power/pdbg": PackageDef(build_type="autoconf"),
179 "openbmc/gpioplus": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600180 build_type="meson",
181 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600182 "-Dexamples=false",
183 "-Dtests=disabled",
184 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600185 ),
186 "openbmc/phosphor-dbus-interfaces": PackageDef(
187 depends=["openbmc/sdbusplus"],
188 build_type="meson",
William A. Kennington III4fe87772022-02-11 15:44:29 -0800189 config_flags=["-Dgenerate_md=false"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600190 ),
191 "openbmc/phosphor-logging": PackageDef(
192 depends=[
Patrick Williams83394612021-02-03 07:12:50 -0600193 "USCiLab/cereal",
Patrick Williams83394612021-02-03 07:12:50 -0600194 "openbmc/phosphor-dbus-interfaces",
195 "openbmc/sdbusplus",
196 "openbmc/sdeventplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600197 ],
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500198 build_type="meson",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600199 config_flags=[
William A. Kennington III6c98f282022-10-05 13:37:04 -0700200 "-Dlibonly=true",
201 "-Dtests=disabled",
Patrick Williams5eabdae2022-04-14 14:34:34 -0500202 f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600203 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600204 ),
205 "openbmc/phosphor-objmgr": PackageDef(
206 depends=[
Brad Bishop11e57622022-09-14 16:10:25 -0400207 "CLIUtils/CLI11",
Patrick Williams70af95c2022-09-27 16:55:41 -0500208 "boost",
Patrick Williams83394612021-02-03 07:12:50 -0600209 "leethomason/tinyxml2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500210 "openbmc/phosphor-dbus-interfaces",
Patrick Williams83394612021-02-03 07:12:50 -0600211 "openbmc/phosphor-logging",
212 "openbmc/sdbusplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600213 ],
Brad Bishop1197e352021-08-03 19:25:46 -0400214 build_type="meson",
215 config_flags=[
216 "-Dtests=disabled",
217 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600218 ),
Jason M. Billsc02ff272023-08-02 10:55:22 -0700219 "openbmc/libpeci": PackageDef(
220 build_type="meson",
221 config_flags=[
222 "-Draw-peci=disabled",
223 ],
224 ),
Manojkiran Eda1c19e452022-10-03 11:01:59 +0530225 "openbmc/libpldm": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600226 build_type="meson",
227 config_flags=[
Andrew Jeffery29d69bb2023-06-06 14:38:24 +0930228 "-Dabi=deprecated,stable",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600229 "-Doem-ibm=enabled",
230 "-Dtests=disabled",
231 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600232 ),
233 "openbmc/sdbusplus": PackageDef(
234 build_type="meson",
235 custom_post_dl=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600236 "cd tools",
237 f"./setup.py install --root=/ --prefix={prefix}",
238 "cd ..",
239 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600240 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600241 "-Dexamples=disabled",
242 "-Dtests=disabled",
243 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600244 ),
245 "openbmc/sdeventplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500246 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500247 "openbmc/stdplus",
248 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600249 build_type="meson",
250 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600251 "-Dexamples=false",
252 "-Dtests=disabled",
253 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600254 ),
255 "openbmc/stdplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500256 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500257 "fmtlib/fmt",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700258 "google/googletest",
259 "Naios/function2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500260 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600261 build_type="meson",
262 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600263 "-Dexamples=false",
264 "-Dtests=disabled",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700265 "-Dgtest=enabled",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600266 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600267 ),
268} # type: Dict[str, PackageDef]
Patrick Williams02871c92021-02-01 20:57:19 -0600269
270# Define common flags used for builds
Patrick Williams02871c92021-02-01 20:57:19 -0600271configure_flags = " ".join(
272 [
273 f"--prefix={prefix}",
274 ]
275)
276cmake_flags = " ".join(
277 [
Patrick Williams02871c92021-02-01 20:57:19 -0600278 "-DBUILD_SHARED_LIBS=ON",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600279 "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
Patrick Williams02871c92021-02-01 20:57:19 -0600280 f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600281 "-GNinja",
282 "-DCMAKE_MAKE_PROGRAM=ninja",
Patrick Williams02871c92021-02-01 20:57:19 -0600283 ]
284)
285meson_flags = " ".join(
286 [
287 "--wrap-mode=nodownload",
288 f"-Dprefix={prefix}",
289 ]
290)
291
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600292
293class Package(threading.Thread):
294 """Class used to build the Docker stages for each package.
295
296 Generally, this class should not be instantiated directly but through
297 Package.generate_all().
298 """
299
300 # Copy the packages dictionary.
301 packages = packages.copy()
302
303 # Lock used for thread-safety.
304 lock = threading.Lock()
305
306 def __init__(self, pkg: str):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500307 """pkg - The name of this package (ex. foo/bar )"""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600308 super(Package, self).__init__()
309
310 self.package = pkg
311 self.exception = None # type: Optional[Exception]
312
313 # Reference to this package's
314 self.pkg_def = Package.packages[pkg]
315 self.pkg_def["__package"] = self
316
317 def run(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500318 """Thread 'run' function. Builds the Docker stage."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600319
320 # In case this package has no rev, fetch it from Github.
321 self._update_rev()
322
323 # Find all the Package objects that this package depends on.
324 # This section is locked because we are looking into another
325 # package's PackageDef dict, which could be being modified.
326 Package.lock.acquire()
327 deps: Iterable[Package] = [
328 Package.packages[deppkg]["__package"]
329 for deppkg in self.pkg_def.get("depends", [])
330 ]
331 Package.lock.release()
332
333 # Wait until all the depends finish building. We need them complete
334 # for the "COPY" commands.
335 for deppkg in deps:
336 deppkg.join()
337
338 # Generate this package's Dockerfile.
339 dockerfile = f"""
340FROM {docker_base_img_name}
341{self._df_copycmds()}
342{self._df_build()}
343"""
344
345 # Generate the resulting tag name and save it to the PackageDef.
346 # This section is locked because we are modifying the PackageDef,
347 # which can be accessed by other threads.
348 Package.lock.acquire()
349 tag = Docker.tagname(self._stagename(), dockerfile)
350 self.pkg_def["__tag"] = tag
351 Package.lock.release()
352
353 # Do the build / save any exceptions.
354 try:
355 Docker.build(self.package, tag, dockerfile)
356 except Exception as e:
357 self.exception = e
358
359 @classmethod
360 def generate_all(cls) -> None:
361 """Ensure a Docker stage is created for all defined packages.
362
363 These are done in parallel but with appropriate blocking per
364 package 'depends' specifications.
365 """
366
367 # Create a Package for each defined package.
368 pkg_threads = [Package(p) for p in cls.packages.keys()]
369
370 # Start building them all.
Patrick Williams6dbd7802021-02-20 08:34:10 -0600371 # This section is locked because threads depend on each other,
372 # based on the packages, and they cannot 'join' on a thread
373 # which is not yet started. Adding a lock here allows all the
374 # threads to start before they 'join' their dependencies.
375 Package.lock.acquire()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600376 for t in pkg_threads:
377 t.start()
Patrick Williams6dbd7802021-02-20 08:34:10 -0600378 Package.lock.release()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600379
380 # Wait for completion.
381 for t in pkg_threads:
382 t.join()
383 # Check if the thread saved off its own exception.
384 if t.exception:
385 print(f"Package {t.package} failed!", file=sys.stderr)
386 raise t.exception
387
388 @staticmethod
389 def df_all_copycmds() -> str:
390 """Formulate the Dockerfile snippet necessary to copy all packages
391 into the final image.
392 """
393 return Package.df_copycmds_set(Package.packages.keys())
394
395 @classmethod
396 def depcache(cls) -> str:
397 """Create the contents of the '/tmp/depcache'.
398 This file is a comma-separated list of "<pkg>:<rev>".
399 """
400
401 # This needs to be sorted for consistency.
402 depcache = ""
403 for pkg in sorted(cls.packages.keys()):
404 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
405 return depcache
406
407 def _update_rev(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500408 """Look up the HEAD for missing a static rev."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600409
410 if "rev" in self.pkg_def:
411 return
412
Patrick Williams65b21fb2021-02-12 21:21:14 -0600413 # Check if Jenkins/Gerrit gave us a revision and use it.
414 if gerrit_project == self.package and gerrit_rev:
415 print(
416 f"Found Gerrit revision for {self.package}: {gerrit_rev}",
417 file=sys.stderr,
418 )
419 self.pkg_def["rev"] = gerrit_rev
420 return
421
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600422 # Ask Github for all the branches.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500423 lookup = git(
424 "ls-remote", "--heads", f"https://github.com/{self.package}"
425 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600426
427 # Find the branch matching {branch} (or fallback to master).
428 # This section is locked because we are modifying the PackageDef.
429 Package.lock.acquire()
430 for line in lookup.split("\n"):
Andrew Geisslerf3d27e62024-04-09 15:24:49 -0500431 if re.fullmatch(f".*{branch}$", line.strip()):
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600432 self.pkg_def["rev"] = line.split()[0]
Andrew Geisslerf3d27e62024-04-09 15:24:49 -0500433 break
Patrick Williamsc7d73642022-10-11 17:22:06 -0500434 elif (
435 "refs/heads/master" in line or "refs/heads/main" in line
436 ) and "rev" not in self.pkg_def:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600437 self.pkg_def["rev"] = line.split()[0]
438 Package.lock.release()
439
440 def _stagename(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500441 """Create a name for the Docker stage associated with this pkg."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600442 return self.package.replace("/", "-").lower()
443
444 def _url(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500445 """Get the URL for this package."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600446 rev = self.pkg_def["rev"]
447
448 # If the lambda exists, call it.
449 if "url" in self.pkg_def:
450 return self.pkg_def["url"](self.package, rev)
451
452 # Default to the github archive URL.
453 return f"https://github.com/{self.package}/archive/{rev}.tar.gz"
454
455 def _cmd_download(self) -> str:
456 """Formulate the command necessary to download and unpack to source."""
457
458 url = self._url()
459 if ".tar." not in url:
460 raise NotImplementedError(
461 f"Unhandled download type for {self.package}: {url}"
462 )
463
464 cmd = f"curl -L {url} | tar -x"
465
466 if url.endswith(".bz2"):
467 cmd += "j"
468 elif url.endswith(".gz"):
469 cmd += "z"
470 else:
471 raise NotImplementedError(
472 f"Unknown tar flags needed for {self.package}: {url}"
473 )
474
475 return cmd
476
477 def _cmd_cd_srcdir(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500478 """Formulate the command necessary to 'cd' into the source dir."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600479 return f"cd {self.package.split('/')[-1]}*"
480
481 def _df_copycmds(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500482 """Formulate the dockerfile snippet necessary to COPY all depends."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600483
484 if "depends" not in self.pkg_def:
485 return ""
486 return Package.df_copycmds_set(self.pkg_def["depends"])
487
488 @staticmethod
489 def df_copycmds_set(pkgs: Iterable[str]) -> str:
490 """Formulate the Dockerfile snippet necessary to COPY a set of
491 packages into a Docker stage.
492 """
493
494 copy_cmds = ""
495
496 # Sort the packages for consistency.
497 for p in sorted(pkgs):
498 tag = Package.packages[p]["__tag"]
499 copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n"
500 # Workaround for upstream docker bug and multiple COPY cmds
501 # https://github.com/moby/moby/issues/37965
502 copy_cmds += "RUN true\n"
503
504 return copy_cmds
505
506 def _df_build(self) -> str:
507 """Formulate the Dockerfile snippet necessary to download, build, and
508 install a package into a Docker stage.
509 """
510
511 # Download and extract source.
512 result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && "
513
514 # Handle 'custom_post_dl' commands.
515 custom_post_dl = self.pkg_def.get("custom_post_dl")
516 if custom_post_dl:
517 result += " && ".join(custom_post_dl) + " && "
518
519 # Build and install package based on 'build_type'.
520 build_type = self.pkg_def["build_type"]
521 if build_type == "autoconf":
522 result += self._cmd_build_autoconf()
523 elif build_type == "cmake":
524 result += self._cmd_build_cmake()
525 elif build_type == "custom":
526 result += self._cmd_build_custom()
527 elif build_type == "make":
528 result += self._cmd_build_make()
529 elif build_type == "meson":
530 result += self._cmd_build_meson()
531 else:
532 raise NotImplementedError(
533 f"Unhandled build type for {self.package}: {build_type}"
534 )
535
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600536 # Handle 'custom_post_install' commands.
537 custom_post_install = self.pkg_def.get("custom_post_install")
538 if custom_post_install:
539 result += " && " + " && ".join(custom_post_install)
540
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600541 return result
542
543 def _cmd_build_autoconf(self) -> str:
544 options = " ".join(self.pkg_def.get("config_flags", []))
545 env = " ".join(self.pkg_def.get("config_env", []))
546 result = "./bootstrap.sh && "
547 result += f"{env} ./configure {configure_flags} {options} && "
548 result += f"make -j{proc_count} && make install"
549 return result
550
551 def _cmd_build_cmake(self) -> str:
552 options = " ".join(self.pkg_def.get("config_flags", []))
553 env = " ".join(self.pkg_def.get("config_env", []))
554 result = "mkdir builddir && cd builddir && "
555 result += f"{env} cmake {cmake_flags} {options} .. && "
556 result += "cmake --build . --target all && "
557 result += "cmake --build . --target install && "
558 result += "cd .."
559 return result
560
561 def _cmd_build_custom(self) -> str:
562 return " && ".join(self.pkg_def.get("build_steps", []))
563
564 def _cmd_build_make(self) -> str:
565 return f"make -j{proc_count} && make install"
566
567 def _cmd_build_meson(self) -> str:
568 options = " ".join(self.pkg_def.get("config_flags", []))
569 env = " ".join(self.pkg_def.get("config_env", []))
Andrew Jefferye2da11a2023-06-15 10:16:37 +0930570 result = f"{env} meson setup builddir {meson_flags} {options} && "
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600571 result += "ninja -C builddir && ninja -C builddir install"
572 return result
573
574
575class Docker:
576 """Class to assist with Docker interactions. All methods are static."""
577
578 @staticmethod
579 def timestamp() -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500580 """Generate a timestamp for today using the ISO week."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600581 today = date.today().isocalendar()
582 return f"{today[0]}-W{today[1]:02}"
583
584 @staticmethod
Patrick Williams41d86212022-11-25 18:28:43 -0600585 def tagname(pkgname: Optional[str], dockerfile: str) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500586 """Generate a tag name for a package using a hash of the Dockerfile."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600587 result = docker_image_name
588 if pkgname:
589 result += "-" + pkgname
590
591 result += ":" + Docker.timestamp()
592 result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16]
593
594 return result
595
596 @staticmethod
597 def build(pkg: str, tag: str, dockerfile: str) -> None:
Andrew Geissler22e61102023-02-14 14:44:00 -0600598 """Build a docker image using the Dockerfile and tagging it with 'tag'."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600599
600 # If we're not forcing builds, check if it already exists and skip.
601 if not force_build:
602 if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500603 print(
604 f"Image {tag} already exists. Skipping.", file=sys.stderr
605 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600606 return
607
608 # Build it.
609 # Capture the output of the 'docker build' command and send it to
610 # stderr (prefixed with the package name). This allows us to see
Manojkiran Edaa6ebc6e2024-06-17 11:51:45 +0530611 # progress but not pollute stdout. Later on we output the final
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600612 # docker tag to stdout and we want to keep that pristine.
613 #
614 # Other unusual flags:
615 # --no-cache: Bypass the Docker cache if 'force_build'.
616 # --force-rm: Clean up Docker processes if they fail.
617 docker.build(
618 proxy_args,
619 "--network=host",
620 "--force-rm",
621 "--no-cache=true" if force_build else "--no-cache=false",
622 "-t",
623 tag,
624 "-",
625 _in=dockerfile,
626 _out=(
627 lambda line: print(
628 pkg + ":", line, end="", file=sys.stderr, flush=True
629 )
630 ),
Jonathan Doman88dd7922024-05-02 10:34:21 -0700631 _err_to_out=True,
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600632 )
633
634
635# Read a bunch of environment variables.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500636docker_image_name = os.environ.get(
637 "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test"
638)
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600639force_build = os.environ.get("FORCE_DOCKER_BUILD")
640is_automated_ci_build = os.environ.get("BUILD_URL", False)
Patrick Williams7c95a372024-01-05 19:22:58 -0600641distro = os.environ.get("DISTRO", "ubuntu:noble")
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600642branch = os.environ.get("BRANCH", "master")
643ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
644http_proxy = os.environ.get("http_proxy")
645
Patrick Williams65b21fb2021-02-12 21:21:14 -0600646gerrit_project = os.environ.get("GERRIT_PROJECT")
647gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION")
648
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600649# Ensure appropriate docker build output to see progress and identify
650# any issues
651os.environ["BUILDKIT_PROGRESS"] = "plain"
652
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600653# Set up some common variables.
654username = os.environ.get("USER", "root")
655homedir = os.environ.get("HOME", "/root")
656gid = os.getgid()
657uid = os.getuid()
658
Josh Lehan6825a012022-03-17 18:31:39 -0700659# Use well-known constants if user is root
660if username == "root":
661 homedir = "/root"
662 gid = 0
663 uid = 0
664
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600665# Determine the architecture for Docker.
666arch = uname("-m").strip()
667if arch == "ppc64le":
668 docker_base = "ppc64le/"
669elif arch == "x86_64":
670 docker_base = ""
Thang Q. Nguyen051b05b2021-12-10 08:30:35 +0000671elif arch == "aarch64":
Thang Q. Nguyenf98f1a82021-12-22 01:59:19 +0000672 docker_base = "arm64v8/"
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600673else:
674 print(
675 f"Unsupported system architecture({arch}) found for docker image",
676 file=sys.stderr,
677 )
678 sys.exit(1)
679
Patrick Williams02871c92021-02-01 20:57:19 -0600680# Special flags if setting up a deb mirror.
681mirror = ""
682if "ubuntu" in distro and ubuntu_mirror:
683 mirror = f"""
Patrick Williamse08ffba2022-12-05 10:33:46 -0600684RUN echo "deb {ubuntu_mirror} \
685 $(. /etc/os-release && echo $VERSION_CODENAME) \
686 main restricted universe multiverse" > /etc/apt/sources.list && \\
687 echo "deb {ubuntu_mirror} \
688 $(. /etc/os-release && echo $VERSION_CODENAME)-updates \
689 main restricted universe multiverse" >> /etc/apt/sources.list && \\
690 echo "deb {ubuntu_mirror} \
691 $(. /etc/os-release && echo $VERSION_CODENAME)-security \
692 main restricted universe multiverse" >> /etc/apt/sources.list && \\
693 echo "deb {ubuntu_mirror} \
694 $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \
695 main restricted universe multiverse" >> /etc/apt/sources.list && \\
696 echo "deb {ubuntu_mirror} \
697 $(. /etc/os-release && echo $VERSION_CODENAME)-backports \
698 main restricted universe multiverse" >> /etc/apt/sources.list
Patrick Williams02871c92021-02-01 20:57:19 -0600699"""
700
701# Special flags for proxying.
702proxy_cmd = ""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200703proxy_keyserver = ""
Patrick Williams02871c92021-02-01 20:57:19 -0600704proxy_args = []
705if http_proxy:
706 proxy_cmd = f"""
707RUN echo "[http]" >> {homedir}/.gitconfig && \
708 echo "proxy = {http_proxy}" >> {homedir}/.gitconfig
709"""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200710 proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}"
711
Patrick Williams02871c92021-02-01 20:57:19 -0600712 proxy_args.extend(
713 [
714 "--build-arg",
715 f"http_proxy={http_proxy}",
716 "--build-arg",
Lei YUd461cd62021-02-18 14:25:49 +0800717 f"https_proxy={http_proxy}",
Patrick Williams02871c92021-02-01 20:57:19 -0600718 ]
719 )
720
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600721# Create base Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600722dockerfile_base = f"""
723FROM {docker_base}{distro}
Patrick Williams02871c92021-02-01 20:57:19 -0600724
725{mirror}
726
727ENV DEBIAN_FRONTEND noninteractive
728
Patrick Williams8949d3c2022-04-27 16:41:27 -0500729ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
Patrick Williams02871c92021-02-01 20:57:19 -0600730
Patrick Williamsbb16ac12021-04-12 12:23:51 -0500731# Sometimes the ubuntu key expires and we need a way to force an execution
732# of the apt-get commands for the dbgsym-keyring. When this happens we see
733# an error like: "Release: The following signatures were invalid:"
734# Insert a bogus echo that we can change here when we get this error to force
735# the update.
736RUN echo "ubuntu keyserver rev as of 2021-04-21"
737
Patrick Williams02871c92021-02-01 20:57:19 -0600738# We need the keys to be imported for dbgsym repos
739# New releases have a package, older ones fall back to manual fetching
740# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700741# Known issue with gpg to get keys via proxy -
742# https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1788190, hence using
743# curl to get keys.
Patrick Williams50837432021-02-06 12:24:05 -0600744RUN apt-get update && apt-get dist-upgrade -yy && \
Jian Zhang938d3032023-07-05 13:35:35 +0800745 ( apt-get install -yy gpgv ubuntu-dbgsym-keyring || \
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700746 ( apt-get install -yy dirmngr curl && \
747 curl -sSL \
748 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622' \
749 | apt-key add - ))
Patrick Williams02871c92021-02-01 20:57:19 -0600750
751# Parse the current repo list into a debug repo list
Patrick Williamse08ffba2022-12-05 10:33:46 -0600752RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \
753 /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600754
755# Remove non-existent debug repos
Patrick Williams41d86212022-11-25 18:28:43 -0600756RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600757
758RUN cat /etc/apt/sources.list.d/debug.list
759
760RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Jeffery58f19152023-05-22 16:41:32 +0930761 abi-compliance-checker \
Andrew Jeffery8b112062023-05-22 20:49:11 +0930762 abi-dumper \
Patrick Williams02871c92021-02-01 20:57:19 -0600763 autoconf \
764 autoconf-archive \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600765 bison \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600766 cmake \
767 curl \
768 dbus \
769 device-tree-compiler \
770 flex \
Patrick Williams961f1482023-05-30 09:24:16 -0500771 g++-13 \
772 gcc-13 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600773 git \
Patrick Williams6968e832024-08-16 17:43:24 -0400774 gnupg \
Patrick Williams02871c92021-02-01 20:57:19 -0600775 iproute2 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600776 iputils-ping \
Manojkiran Eda524a3312023-04-05 15:37:47 +0530777 libaudit-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600778 libc6-dbg \
779 libc6-dev \
780 libconfig++-dev \
781 libcryptsetup-dev \
782 libdbus-1-dev \
783 libevdev-dev \
784 libgpiod-dev \
785 libi2c-dev \
786 libjpeg-dev \
787 libjson-perl \
788 libldap2-dev \
789 libmimetic-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600790 libnl-3-dev \
791 libnl-genl-3-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600792 libpam0g-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600793 libpciaccess-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600794 libperlio-gzip-perl \
795 libpng-dev \
796 libprotobuf-dev \
797 libsnmp-dev \
798 libssl-dev \
799 libsystemd-dev \
800 libtool \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600801 liburing-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600802 libxml2-utils \
Patrick Williams0eedeed2021-02-06 19:06:09 -0600803 libxml-simple-perl \
Patrick Williams6968e832024-08-16 17:43:24 -0400804 lsb-release \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600805 ninja-build \
806 npm \
807 pkg-config \
808 protobuf-compiler \
809 python3 \
810 python3-dev\
811 python3-git \
812 python3-mako \
813 python3-pip \
William A. Kennington III25ba1e22024-03-24 15:47:51 -0700814 python3-protobuf \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600815 python3-setuptools \
816 python3-socks \
817 python3-yaml \
John Wedig9adf68d2021-11-16 14:00:39 -0800818 rsync \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600819 shellcheck \
Ewelina Walkusz8dd1bfe2024-05-27 09:34:50 +0200820 socat \
Patrick Williams6968e832024-08-16 17:43:24 -0400821 software-properties-common \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600822 sudo \
823 systemd \
824 valgrind \
Andrew Geisslerb565f822022-12-14 11:43:25 -0600825 vim \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600826 wget \
827 xxd
Patrick Williams02871c92021-02-01 20:57:19 -0600828
Patrick Williams961f1482023-05-30 09:24:16 -0500829RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 \
830 --slave /usr/bin/g++ g++ /usr/bin/g++-13 \
831 --slave /usr/bin/gcov gcov /usr/bin/gcov-13 \
832 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-13 \
833 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-13
834RUN update-alternatives --remove cpp /usr/bin/cpp && \
835 update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-13 13
Patrick Williams02871c92021-02-01 20:57:19 -0600836
Patrick Williams6968e832024-08-16 17:43:24 -0400837# Set up LLVM apt repository.
838RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" 18
839
840# Install extra clang tools
841RUN apt-get install \
842 clang-18 \
843 clang-format-18 \
844 clang-tidy-18
845
Ed Tanousb84e29c2024-02-22 15:40:34 -0800846RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 1000 \
847 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-18 \
848 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-18 \
849 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-18 \
Patrick Williamse08ffba2022-12-05 10:33:46 -0600850 --slave /usr/bin/run-clang-tidy run-clang-tidy.py \
Ed Tanousb84e29c2024-02-22 15:40:34 -0800851 /usr/bin/run-clang-tidy-18 \
852 --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-18
Patrick Williams02871c92021-02-01 20:57:19 -0600853
Patrick Williams50837432021-02-06 12:24:05 -0600854"""
855
856if is_automated_ci_build:
857 dockerfile_base += f"""
Manojkiran Edaa6ebc6e2024-06-17 11:51:45 +0530858# Run an arbitrary command to pollute the docker cache regularly force us
Patrick Williams50837432021-02-06 12:24:05 -0600859# to re-run `apt-get update` daily.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600860RUN echo {Docker.timestamp()}
Patrick Williams50837432021-02-06 12:24:05 -0600861RUN apt-get update && apt-get dist-upgrade -yy
862
863"""
864
Patrick Williams41d86212022-11-25 18:28:43 -0600865dockerfile_base += """
Patrick Williams5e4d8402023-04-11 22:19:30 -0500866RUN pip3 install --break-system-packages \
Patrick Williams818023d2023-04-10 13:07:15 -0500867 beautysh \
868 black \
869 codespell \
870 flake8 \
Ewelina Walkusz2d8c5512024-07-02 10:49:38 +0200871 gcovr \
Patrick Williams818023d2023-04-10 13:07:15 -0500872 gitlint \
873 inflection \
874 isort \
875 jsonschema \
Patrick Williams16baaf72023-12-05 19:21:51 -0600876 meson==1.3.0 \
Patrick Williams818023d2023-04-10 13:07:15 -0500877 requests
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600878
879RUN npm install -g \
Xinnan Xied0757de2024-05-27 14:22:58 +0800880 eslint@v8.56.0 eslint-plugin-json@v3.1.0 \
Patrick Williams7d41f6d2022-12-06 10:19:43 -0600881 markdownlint-cli@latest \
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600882 prettier@latest
Ed Tanousfb9948a2022-06-21 09:10:24 -0700883"""
884
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600885# Build the base and stage docker images.
886docker_base_img_name = Docker.tagname("base", dockerfile_base)
887Docker.build("base", docker_base_img_name, dockerfile_base)
888Package.generate_all()
Patrick Williams02871c92021-02-01 20:57:19 -0600889
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600890# Create the final Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600891dockerfile = f"""
Patrick Williams02871c92021-02-01 20:57:19 -0600892# Build the final output image
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600893FROM {docker_base_img_name}
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600894{Package.df_all_copycmds()}
Patrick Williams02871c92021-02-01 20:57:19 -0600895
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 Williamsee3c9ee2021-02-12 20:56:01 -0600899RUN echo '{Package.depcache()}' > /tmp/depcache
Patrick Williams02871c92021-02-01 20:57:19 -0600900
Patrick Williams67cc0612023-04-11 22:16:46 -0500901# Ensure the group, user, and home directory are created (or rename them if
902# they already exist).
903RUN 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 Williams02871c92021-02-01 20:57:19 -0600908RUN mkdir -p "{os.path.dirname(homedir)}"
Patrick Williams67cc0612023-04-11 22:16:46 -0500909RUN if grep -q ":{uid}:" /etc/passwd ; then \
Patrick Williams73b3ee92023-04-24 10:11:01 -0500910 usermod -l {username} -d {homedir} -m $(awk -F : '{{ if ($3 == {uid}) {{ print $1 }} }}' /etc/passwd) ; \
Patrick Williams67cc0612023-04-11 22:16:46 -0500911 else \
912 useradd -d {homedir} -m -u {uid} -g {gid} {username} ; \
913 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600914RUN sed -i '1iDefaults umask=000' /etc/sudoers
915RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
916
Andrew Geissler305a9a52021-04-07 11:08:40 -0500917# Ensure user has ability to write to /usr/local for different tool
918# and data installs
Andrew Geissler7bb00b12021-05-10 15:12:08 -0500919RUN chown -R {username}:{username} /usr/local/share
Andrew Geissler305a9a52021-04-07 11:08:40 -0500920
Jonathan Domanab4fee82024-01-31 15:39:20 -0800921# Update library cache
922RUN ldconfig
923
Patrick Williams02871c92021-02-01 20:57:19 -0600924{proxy_cmd}
925
926RUN /bin/bash
927"""
928
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600929# Do the final docker build
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600930docker_final_img_name = Docker.tagname(None, dockerfile)
931Docker.build("final", docker_final_img_name, dockerfile)
932
Patrick Williams00536fb2021-02-11 14:28:49 -0600933# Print the tag of the final image.
934print(docker_final_img_name)