2019-01-12 07:26:53 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Build the Debian packages using Docker images.
|
|
|
|
#
|
|
|
|
# This script builds the Docker images and then executes them sequentially, each
|
|
|
|
# one building a Debian package for the targeted operating system. It is
|
|
|
|
# designed to be a "single command" to produce all the images.
|
|
|
|
#
|
|
|
|
# By default, builds for all known distributions, but a list of distributions
|
|
|
|
# can be passed on the commandline for debugging.
|
|
|
|
|
|
|
|
import argparse
|
2021-07-12 14:03:14 -04:00
|
|
|
import json
|
2019-01-12 07:26:53 -05:00
|
|
|
import os
|
|
|
|
import signal
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import threading
|
2019-01-23 03:39:06 -05:00
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
2022-04-27 09:10:31 -04:00
|
|
|
from types import FrameType
|
|
|
|
from typing import Collection, Optional, Sequence, Set
|
2019-01-12 07:26:53 -05:00
|
|
|
|
|
|
|
DISTS = (
|
2021-08-17 08:48:59 -04:00
|
|
|
"debian:buster", # oldstable: EOL 2022-08
|
2019-11-06 08:35:56 -05:00
|
|
|
"debian:bullseye",
|
2021-08-17 08:48:59 -04:00
|
|
|
"debian:bookworm",
|
2019-01-12 07:26:53 -05:00
|
|
|
"debian:sid",
|
2021-05-14 06:46:35 -04:00
|
|
|
"ubuntu:focal", # 20.04 LTS (our EOL forced by Py38 on 2024-10-14)
|
2022-04-26 05:34:59 -04:00
|
|
|
"ubuntu:jammy", # 22.04 LTS (EOL 2027-04)
|
2019-01-12 07:26:53 -05:00
|
|
|
)
|
|
|
|
|
2021-05-14 06:46:35 -04:00
|
|
|
DESC = """\
|
2019-01-12 07:26:53 -05:00
|
|
|
Builds .debs for synapse, using a Docker image for the build environment.
|
|
|
|
|
|
|
|
By default, builds for all known distributions, but a list of distributions
|
|
|
|
can be passed on the commandline for debugging.
|
2021-05-14 06:46:35 -04:00
|
|
|
"""
|
2019-01-12 07:26:53 -05:00
|
|
|
|
2021-07-12 14:03:14 -04:00
|
|
|
projdir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
|
2019-01-12 07:26:53 -05:00
|
|
|
|
|
|
|
class Builder(object):
|
2021-07-26 06:36:01 -04:00
|
|
|
def __init__(
|
2022-04-27 09:10:31 -04:00
|
|
|
self,
|
|
|
|
redirect_stdout: bool = False,
|
|
|
|
docker_build_args: Optional[Sequence[str]] = None,
|
2021-07-26 06:36:01 -04:00
|
|
|
):
|
2019-01-12 07:26:53 -05:00
|
|
|
self.redirect_stdout = redirect_stdout
|
2021-07-26 06:36:01 -04:00
|
|
|
self._docker_build_args = tuple(docker_build_args or ())
|
2022-04-27 09:10:31 -04:00
|
|
|
self.active_containers: Set[str] = set()
|
2019-01-12 07:26:53 -05:00
|
|
|
self._lock = threading.Lock()
|
|
|
|
self._failed = False
|
|
|
|
|
2022-04-27 09:10:31 -04:00
|
|
|
def run_build(self, dist: str, skip_tests: bool = False) -> None:
|
2019-01-12 07:26:53 -05:00
|
|
|
"""Build deb for a single distribution"""
|
|
|
|
|
|
|
|
if self._failed:
|
2021-05-14 06:46:35 -04:00
|
|
|
print("not building %s due to earlier failure" % (dist,))
|
2019-01-12 07:26:53 -05:00
|
|
|
raise Exception("failed")
|
|
|
|
|
|
|
|
try:
|
2021-04-12 10:27:05 -04:00
|
|
|
self._inner_build(dist, skip_tests)
|
2019-01-12 07:26:53 -05:00
|
|
|
except Exception as e:
|
|
|
|
print("build of %s failed: %s" % (dist, e), file=sys.stderr)
|
|
|
|
self._failed = True
|
|
|
|
raise
|
|
|
|
|
2022-04-27 09:10:31 -04:00
|
|
|
def _inner_build(self, dist: str, skip_tests: bool = False) -> None:
|
2019-01-12 07:26:53 -05:00
|
|
|
tag = dist.split(":", 1)[1]
|
|
|
|
|
|
|
|
# Make the dir where the debs will live.
|
|
|
|
#
|
|
|
|
# Note that we deliberately put this outside the source tree, otherwise
|
|
|
|
# we tend to get source packages which are full of debs. (We could hack
|
|
|
|
# around that with more magic in the build_debian.sh script, but that
|
|
|
|
# doesn't solve the problem for natively-run dpkg-buildpakage).
|
2021-05-14 06:46:35 -04:00
|
|
|
debsdir = os.path.join(projdir, "../debs")
|
2019-01-12 07:26:53 -05:00
|
|
|
os.makedirs(debsdir, exist_ok=True)
|
|
|
|
|
|
|
|
if self.redirect_stdout:
|
2021-05-14 06:46:35 -04:00
|
|
|
logfile = os.path.join(debsdir, "%s.buildlog" % (tag,))
|
2019-01-12 07:26:53 -05:00
|
|
|
print("building %s: directing output to %s" % (dist, logfile))
|
|
|
|
stdout = open(logfile, "w")
|
|
|
|
else:
|
|
|
|
stdout = None
|
|
|
|
|
|
|
|
# first build a docker image for the build environment
|
2021-07-26 06:36:01 -04:00
|
|
|
build_args = (
|
|
|
|
(
|
2021-05-14 06:46:35 -04:00
|
|
|
"docker",
|
|
|
|
"build",
|
|
|
|
"--tag",
|
|
|
|
"dh-venv-builder:" + tag,
|
|
|
|
"--build-arg",
|
|
|
|
"distro=" + dist,
|
|
|
|
"-f",
|
|
|
|
"docker/Dockerfile-dhvirtualenv",
|
2021-07-26 06:36:01 -04:00
|
|
|
)
|
|
|
|
+ self._docker_build_args
|
|
|
|
+ ("docker",)
|
|
|
|
)
|
|
|
|
|
|
|
|
subprocess.check_call(
|
|
|
|
build_args,
|
2021-05-14 06:46:35 -04:00
|
|
|
stdout=stdout,
|
|
|
|
stderr=subprocess.STDOUT,
|
2021-07-12 14:03:14 -04:00
|
|
|
cwd=projdir,
|
2021-05-14 06:46:35 -04:00
|
|
|
)
|
2019-01-12 07:26:53 -05:00
|
|
|
|
|
|
|
container_name = "synapse_build_" + tag
|
|
|
|
with self._lock:
|
|
|
|
self.active_containers.add(container_name)
|
|
|
|
|
|
|
|
# then run the build itself
|
2021-05-14 06:46:35 -04:00
|
|
|
subprocess.check_call(
|
|
|
|
[
|
|
|
|
"docker",
|
|
|
|
"run",
|
|
|
|
"--rm",
|
|
|
|
"--name",
|
|
|
|
container_name,
|
|
|
|
"--volume=" + projdir + ":/synapse/source:ro",
|
|
|
|
"--volume=" + debsdir + ":/debs",
|
|
|
|
"-e",
|
|
|
|
"TARGET_USERID=%i" % (os.getuid(),),
|
|
|
|
"-e",
|
|
|
|
"TARGET_GROUPID=%i" % (os.getgid(),),
|
|
|
|
"-e",
|
|
|
|
"DEB_BUILD_OPTIONS=%s" % ("nocheck" if skip_tests else ""),
|
|
|
|
"dh-venv-builder:" + tag,
|
|
|
|
],
|
|
|
|
stdout=stdout,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
)
|
2019-01-12 07:26:53 -05:00
|
|
|
|
|
|
|
with self._lock:
|
|
|
|
self.active_containers.remove(container_name)
|
|
|
|
|
|
|
|
if stdout is not None:
|
|
|
|
stdout.close()
|
2021-05-14 06:46:35 -04:00
|
|
|
print("Completed build of %s" % (dist,))
|
2019-01-12 07:26:53 -05:00
|
|
|
|
2022-04-27 09:10:31 -04:00
|
|
|
def kill_containers(self) -> None:
|
2019-01-12 07:26:53 -05:00
|
|
|
with self._lock:
|
|
|
|
active = list(self.active_containers)
|
|
|
|
|
|
|
|
for c in active:
|
|
|
|
print("killing container %s" % (c,))
|
2021-05-14 06:46:35 -04:00
|
|
|
subprocess.run(
|
|
|
|
[
|
|
|
|
"docker",
|
|
|
|
"kill",
|
|
|
|
c,
|
|
|
|
],
|
|
|
|
stdout=subprocess.DEVNULL,
|
|
|
|
)
|
2019-01-12 07:26:53 -05:00
|
|
|
with self._lock:
|
|
|
|
self.active_containers.remove(c)
|
|
|
|
|
|
|
|
|
2022-04-27 09:10:31 -04:00
|
|
|
def run_builds(
|
|
|
|
builder: Builder, dists: Collection[str], jobs: int = 1, skip_tests: bool = False
|
|
|
|
) -> None:
|
|
|
|
def sig(signum: int, _frame: Optional[FrameType]) -> None:
|
2019-01-12 07:26:53 -05:00
|
|
|
print("Caught SIGINT")
|
|
|
|
builder.kill_containers()
|
2021-05-14 06:46:35 -04:00
|
|
|
|
2019-01-12 07:26:53 -05:00
|
|
|
signal.signal(signal.SIGINT, sig)
|
|
|
|
|
|
|
|
with ThreadPoolExecutor(max_workers=jobs) as e:
|
2021-04-12 10:27:05 -04:00
|
|
|
res = e.map(lambda dist: builder.run_build(dist, skip_tests), dists)
|
2019-01-12 07:26:53 -05:00
|
|
|
|
|
|
|
# make sure we consume the iterable so that exceptions are raised.
|
2021-05-14 06:46:35 -04:00
|
|
|
for _ in res:
|
2019-01-12 07:26:53 -05:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-05-14 06:46:35 -04:00
|
|
|
if __name__ == "__main__":
|
2019-01-12 07:26:53 -05:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description=DESC,
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
2021-05-14 06:46:35 -04:00
|
|
|
"-j",
|
|
|
|
"--jobs",
|
|
|
|
type=int,
|
|
|
|
default=1,
|
|
|
|
help="specify the number of builds to run in parallel",
|
2019-01-12 07:26:53 -05:00
|
|
|
)
|
2021-04-12 10:27:05 -04:00
|
|
|
parser.add_argument(
|
2021-05-14 06:46:35 -04:00
|
|
|
"--no-check",
|
|
|
|
action="store_true",
|
|
|
|
help="skip running tests after building",
|
2021-04-12 10:27:05 -04:00
|
|
|
)
|
2021-07-26 06:36:01 -04:00
|
|
|
parser.add_argument(
|
|
|
|
"--docker-build-arg",
|
|
|
|
action="append",
|
|
|
|
help="specify an argument to pass to docker build",
|
|
|
|
)
|
2021-07-12 14:03:14 -04:00
|
|
|
parser.add_argument(
|
|
|
|
"--show-dists-json",
|
|
|
|
action="store_true",
|
|
|
|
help="instead of building the packages, just list the dists to build for, as a json array",
|
|
|
|
)
|
2019-01-12 07:26:53 -05:00
|
|
|
parser.add_argument(
|
2021-05-14 06:46:35 -04:00
|
|
|
"dist",
|
|
|
|
nargs="*",
|
|
|
|
default=DISTS,
|
|
|
|
help="a list of distributions to build for. Default: %(default)s",
|
2019-01-12 07:26:53 -05:00
|
|
|
)
|
|
|
|
args = parser.parse_args()
|
2021-07-12 14:03:14 -04:00
|
|
|
if args.show_dists_json:
|
|
|
|
print(json.dumps(DISTS))
|
|
|
|
else:
|
2021-07-26 06:36:01 -04:00
|
|
|
builder = Builder(
|
|
|
|
redirect_stdout=(args.jobs > 1), docker_build_args=args.docker_build_arg
|
|
|
|
)
|
|
|
|
run_builds(
|
|
|
|
builder,
|
|
|
|
dists=args.dist,
|
|
|
|
jobs=args.jobs,
|
|
|
|
skip_tests=args.no_check,
|
|
|
|
)
|