2021-10-26 06:24:44 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
2021-10-26 13:56:27 +00:00
|
|
|
import optparse
|
2021-10-26 17:05:35 +00:00
|
|
|
import sys
|
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
2021-10-26 17:57:58 +00:00
|
|
|
import threading
|
2021-10-26 06:24:44 +00:00
|
|
|
|
2021-10-26 13:56:27 +00:00
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option("--no-cache", action="store_true",
|
|
|
|
help="Run `docker build` with the `--no-cache` option to ignore existing images")
|
2021-10-26 17:05:35 +00:00
|
|
|
parser.add_option("--parallel", "-j", type="int", default=1,
|
|
|
|
help="Run up to this many builds in parallel")
|
2021-10-26 20:38:17 +00:00
|
|
|
parser.add_option("--distro", type="string", default="",
|
|
|
|
help="Build only this distro; should be DISTRO-CODE or DISTRO-CODE/ARCH, "
|
|
|
|
"e.g. debian-sid/amd64")
|
2021-10-26 13:56:27 +00:00
|
|
|
(options, args) = parser.parse_args()
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
registry_base = 'registry.oxen.rocks/lokinet-ci-'
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
distros = [*(('debian', x) for x in ('sid', 'stable', 'testing', 'bullseye', 'buster')),
|
|
|
|
*(('ubuntu', x) for x in ('rolling', 'lts', 'impish', 'hirsute', 'focal', 'bionic'))]
|
2021-10-26 06:24:44 +00:00
|
|
|
|
2021-10-26 20:38:17 +00:00
|
|
|
if options.distro:
|
|
|
|
d = options.distro.split('-')
|
|
|
|
if len(d) != 2 or d[0] not in ('debian', 'ubuntu') or not d[1]:
|
|
|
|
print("Bad --distro value '{}'".format(options.distro), file=sys.stderr)
|
|
|
|
sys.exit(1)
|
|
|
|
distros = [(d[0], d[1].split('/')[0])]
|
|
|
|
|
|
|
|
|
2021-10-26 06:24:44 +00:00
|
|
|
manifests = {} # "image:latest": ["image/amd64", "image/arm64v8", ...]
|
2021-10-26 17:57:58 +00:00
|
|
|
manifestlock = threading.Lock()
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
def arches(distro):
|
2021-10-26 20:38:17 +00:00
|
|
|
if options.distro and '/' in options.distro:
|
|
|
|
arch = options.distro.split('/')
|
|
|
|
if arch not in ('amd64', 'i386', 'arm64v8', 'arm32v7'):
|
|
|
|
print("Bad --distro value '{}'".format(options.distro), file=sys.stderr)
|
|
|
|
sys.exit(1)
|
|
|
|
return [arch]
|
|
|
|
|
2021-10-26 06:24:44 +00:00
|
|
|
a = ['amd64', 'arm64v8', 'arm32v7']
|
2021-10-26 17:05:35 +00:00
|
|
|
if distro[0] == 'debian' or distro == ('ubuntu', 'bionic'):
|
2021-10-26 06:24:44 +00:00
|
|
|
a.append('i386') # i386 builds don't work on later ubuntu
|
|
|
|
return a
|
|
|
|
|
|
|
|
|
2021-10-26 20:38:17 +00:00
|
|
|
hacks = {
|
2021-10-28 16:49:37 +00:00
|
|
|
registry_base + 'ubuntu-bionic-builder': """g++-8 \
|
|
|
|
&& mkdir -p /usr/lib/x86_64-linux-gnu/pgm-5.2/include""",
|
2021-10-26 20:38:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
failure = False
|
|
|
|
|
2021-10-26 17:57:58 +00:00
|
|
|
lineno = 0
|
|
|
|
linelock = threading.Lock()
|
2021-10-26 17:05:35 +00:00
|
|
|
|
2021-10-26 17:57:58 +00:00
|
|
|
|
|
|
|
def print_line(myline, value):
|
|
|
|
linelock.acquire()
|
|
|
|
global lineno
|
2021-10-28 16:49:20 +00:00
|
|
|
if sys.__stdout__.isatty():
|
2021-10-26 17:57:58 +00:00
|
|
|
jump = lineno - myline
|
|
|
|
print("\033[{jump}A\r\033[K{value}\033[{jump}B\r".format(jump=jump, value=value), end='')
|
|
|
|
sys.stdout.flush()
|
|
|
|
else:
|
|
|
|
print(value)
|
|
|
|
linelock.release()
|
|
|
|
|
|
|
|
|
|
|
|
def run_or_report(*args, myline):
|
2021-10-26 17:05:35 +00:00
|
|
|
try:
|
|
|
|
subprocess.run(
|
|
|
|
args, check=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding='utf8')
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
with tempfile.NamedTemporaryFile(suffix=".log", delete=False) as log:
|
2021-10-26 17:57:58 +00:00
|
|
|
log.write("Error running {}: {}\n\nOutput:\n\n".format(' '.join(args), e).encode())
|
2021-10-26 17:05:35 +00:00
|
|
|
log.write(e.output.encode())
|
|
|
|
global failure
|
|
|
|
failure = True
|
2021-11-17 00:24:38 +00:00
|
|
|
print_line(myline, "\033[31;1mError! See {} for details".format(log.name))
|
2021-10-26 17:05:35 +00:00
|
|
|
raise e
|
|
|
|
|
|
|
|
|
2021-10-26 06:24:44 +00:00
|
|
|
def build_tag(tag_base, arch, contents):
|
2021-10-26 17:05:35 +00:00
|
|
|
if failure:
|
|
|
|
raise ChildProcessError()
|
2021-10-26 17:57:58 +00:00
|
|
|
|
|
|
|
linelock.acquire()
|
2021-10-28 16:49:20 +00:00
|
|
|
global lineno
|
2021-10-26 17:57:58 +00:00
|
|
|
myline = lineno
|
2021-10-28 16:49:20 +00:00
|
|
|
lineno += 1
|
|
|
|
print()
|
2021-10-26 17:57:58 +00:00
|
|
|
linelock.release()
|
|
|
|
|
2021-10-26 06:24:44 +00:00
|
|
|
with tempfile.NamedTemporaryFile() as dockerfile:
|
|
|
|
dockerfile.write(contents.encode())
|
|
|
|
dockerfile.flush()
|
|
|
|
|
|
|
|
tag = '{}/{}'.format(tag_base, arch)
|
2021-10-26 17:57:58 +00:00
|
|
|
print_line(myline, "\033[33;1mRebuilding \033[35;1m{}\033[0m".format(tag))
|
2021-10-26 17:05:35 +00:00
|
|
|
run_or_report('docker', 'build', '--pull', '-f', dockerfile.name, '-t', tag,
|
2021-10-26 17:57:58 +00:00
|
|
|
*(('--no-cache',) if options.no_cache else ()), '.', myline=myline)
|
|
|
|
print_line(myline, "\033[33;1mPushing \033[35;1m{}\033[0m".format(tag))
|
|
|
|
run_or_report('docker', 'push', tag, myline=myline)
|
|
|
|
print_line(myline, "\033[32;1mFinished build \033[35;1m{}\033[0m".format(tag))
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
latest = tag_base + ':latest'
|
2021-10-26 17:05:35 +00:00
|
|
|
global manifests
|
2021-10-26 17:57:58 +00:00
|
|
|
manifestlock.acquire()
|
2021-10-26 06:24:44 +00:00
|
|
|
if latest in manifests:
|
|
|
|
manifests[latest].append(tag)
|
|
|
|
else:
|
|
|
|
manifests[latest] = [tag]
|
2021-10-26 17:57:58 +00:00
|
|
|
manifestlock.release()
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
def base_distro_build(distro, arch):
|
|
|
|
tag = '{r}{distro[0]}-{distro[1]}-base'.format(r=registry_base, distro=distro)
|
|
|
|
codename = 'latest' if distro == ('ubuntu', 'lts') else distro[1]
|
|
|
|
build_tag(tag, arch, """
|
|
|
|
FROM {}/{}:{}
|
|
|
|
RUN /bin/bash -c 'echo "man-db man-db/auto-update boolean false" | debconf-set-selections'
|
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
2021-10-26 20:38:17 +00:00
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q autoremove -y \
|
|
|
|
{hacks}
|
|
|
|
""".format(arch, distro[0], codename, hacks=hacks.get(tag, '')))
|
2021-10-26 17:05:35 +00:00
|
|
|
|
|
|
|
|
2021-10-26 06:24:44 +00:00
|
|
|
def distro_build(distro, arch):
|
|
|
|
prefix = '{r}{distro[0]}-{distro[1]}'.format(r=registry_base, distro=distro)
|
|
|
|
fmtargs = dict(arch=arch, distro=distro, prefix=prefix)
|
|
|
|
|
|
|
|
# (distro)-(codename)-base: Base image from upstream: we sync the repos, but do nothing else.
|
2021-10-26 17:05:35 +00:00
|
|
|
if (distro, arch) != (('debian', 'stable'), 'amd64'): # debian-stable-base/amd64 already built
|
|
|
|
base_distro_build(distro, arch)
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
# (distro)-(codename)-builder: Deb builder image used for building debs; we add the basic tools
|
|
|
|
# we use to build debs, not including things that should come from the dependencies in the
|
|
|
|
# debian/control file.
|
|
|
|
build_tag(prefix + '-builder', arch, """
|
|
|
|
FROM {prefix}-base/{arch}
|
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 --no-install-recommends -q install -y \
|
|
|
|
ccache \
|
|
|
|
devscripts \
|
|
|
|
equivs \
|
|
|
|
g++ \
|
|
|
|
git \
|
|
|
|
git-buildpackage \
|
2021-10-26 20:38:17 +00:00
|
|
|
openssh-client \
|
|
|
|
{hacks}
|
|
|
|
""".format(**fmtargs, hacks=hacks.get(prefix + '-builder', '')))
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
# (distro)-(codename): Basic image we use for most builds. This takes the -builder and adds
|
|
|
|
# most dependencies found in our packages.
|
|
|
|
build_tag(prefix, arch, """
|
|
|
|
FROM {prefix}-builder/{arch}
|
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 --no-install-recommends -q install -y \
|
|
|
|
automake \
|
|
|
|
ccache \
|
|
|
|
cmake \
|
|
|
|
eatmydata \
|
|
|
|
g++ \
|
|
|
|
gdb \
|
|
|
|
git \
|
|
|
|
libboost-program-options-dev \
|
|
|
|
libboost-serialization-dev \
|
|
|
|
libboost-thread-dev \
|
|
|
|
libcurl4-openssl-dev \
|
|
|
|
libevent-dev \
|
|
|
|
libgtest-dev \
|
|
|
|
libhidapi-dev \
|
|
|
|
libjemalloc-dev \
|
|
|
|
libminiupnpc-dev \
|
|
|
|
libreadline-dev \
|
|
|
|
libsodium-dev \
|
|
|
|
libsqlite3-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libsystemd-dev \
|
|
|
|
libtool \
|
|
|
|
libunbound-dev \
|
|
|
|
libunwind8-dev \
|
|
|
|
libusb-1.0.0-dev \
|
|
|
|
libuv1-dev \
|
|
|
|
libzmq3-dev \
|
|
|
|
lsb-release \
|
|
|
|
make \
|
|
|
|
nettle-dev \
|
|
|
|
ninja-build \
|
|
|
|
openssh-client \
|
|
|
|
patch \
|
|
|
|
pkg-config \
|
|
|
|
pybind11-dev \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip \
|
|
|
|
python3-pybind11 \
|
|
|
|
python3-pytest \
|
|
|
|
python3-setuptools \
|
2021-10-26 20:38:17 +00:00
|
|
|
qttools5-dev \
|
|
|
|
{hacks}
|
|
|
|
""".format(**fmtargs, hacks=hacks.get(prefix, '')))
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
# Android and flutter builds on top of debian-stable-base and adds a ton of android crap; we
|
|
|
|
# schedule this job as soon as the debian-sid-base/amd64 build finishes, because they easily take
|
|
|
|
# the longest and are by far the biggest images.
|
|
|
|
def android_builds():
|
|
|
|
build_tag(registry_base + 'android', 'amd64', """
|
2021-10-26 06:24:44 +00:00
|
|
|
FROM {r}debian-stable-base
|
|
|
|
RUN /bin/bash -c 'sed -i "s/main/main contrib/g" /etc/apt/sources.list'
|
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q install --no-install-recommends -y \
|
|
|
|
android-sdk \
|
|
|
|
automake \
|
|
|
|
ccache \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
git \
|
|
|
|
google-android-ndk-installer \
|
|
|
|
libtool \
|
|
|
|
make \
|
|
|
|
openssh-client \
|
|
|
|
patch \
|
|
|
|
pkg-config \
|
|
|
|
wget \
|
|
|
|
xz-utils \
|
|
|
|
zip \
|
|
|
|
&& git clone https://github.com/Shadowstyler/android-sdk-licenses.git /tmp/android-sdk-licenses \
|
|
|
|
&& cp -a /tmp/android-sdk-licenses/*-license /usr/lib/android-sdk/licenses \
|
|
|
|
&& rm -rf /tmp/android-sdk-licenses
|
|
|
|
""".format(r=registry_base))
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
build_tag(registry_base + 'flutter', 'amd64', """
|
2021-10-26 06:24:44 +00:00
|
|
|
FROM {r}android
|
|
|
|
RUN cd /opt \
|
|
|
|
&& curl https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_2.2.2-stable.tar.xz \
|
|
|
|
| tar xJv \
|
|
|
|
&& ln -s /opt/flutter/bin/flutter /usr/local/bin/ \
|
|
|
|
&& flutter precache
|
|
|
|
""".format(r=registry_base))
|
|
|
|
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
# lint is a tiny build (on top of debian-stable-base) with just formatting checking tools
|
|
|
|
def lint_build():
|
|
|
|
build_tag(registry_base + 'lint', 'amd64', """
|
|
|
|
FROM {r}debian-stable-base
|
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q install --no-install-recommends -y \
|
|
|
|
clang-format-11 \
|
|
|
|
eatmydata \
|
|
|
|
git \
|
|
|
|
jsonnet
|
2021-10-26 06:24:44 +00:00
|
|
|
""".format(r=registry_base))
|
|
|
|
|
|
|
|
|
2021-10-26 17:05:35 +00:00
|
|
|
def nodejs_build():
|
|
|
|
build_tag(registry_base + 'nodejs', 'amd64', """
|
|
|
|
FROM node:14.16.1
|
|
|
|
RUN /bin/bash -c 'echo "man-db man-db/auto-update boolean false" | debconf-set-selections'
|
2021-10-26 06:24:44 +00:00
|
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
|
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q install --no-install-recommends -y \
|
|
|
|
ccache \
|
|
|
|
cmake \
|
|
|
|
eatmydata \
|
2021-10-26 17:05:35 +00:00
|
|
|
g++ \
|
|
|
|
gdb \
|
2021-10-26 06:24:44 +00:00
|
|
|
git \
|
|
|
|
make \
|
|
|
|
ninja-build \
|
|
|
|
openssh-client \
|
|
|
|
patch \
|
|
|
|
pkg-config \
|
2021-10-26 17:05:35 +00:00
|
|
|
wine
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
|
|
# Start debian-stable-base/amd64 on its own, because other builds depend on it and we want to get
|
|
|
|
# those (especially android/flutter) fired off as soon as possible (because it's slow and huge).
|
2021-10-26 20:38:17 +00:00
|
|
|
if ('debian', 'stable') in distros:
|
|
|
|
base_distro_build(['debian', 'stable'], 'amd64')
|
2021-10-26 17:05:35 +00:00
|
|
|
|
|
|
|
executor = ThreadPoolExecutor(max_workers=max(options.parallel, 1))
|
|
|
|
|
2021-10-26 20:38:17 +00:00
|
|
|
if options.distro:
|
|
|
|
jobs = []
|
|
|
|
else:
|
|
|
|
jobs = [executor.submit(b) for b in (android_builds, lint_build, nodejs_build)]
|
2021-10-26 17:05:35 +00:00
|
|
|
|
|
|
|
for d in distros:
|
2021-10-26 18:10:29 +00:00
|
|
|
for a in arches(d):
|
2021-10-26 17:05:35 +00:00
|
|
|
jobs.append(executor.submit(distro_build, d, a))
|
|
|
|
while len(jobs):
|
|
|
|
j = jobs.pop(0)
|
|
|
|
try:
|
|
|
|
j.result()
|
|
|
|
except (ChildProcessError, subprocess.CalledProcessError):
|
|
|
|
for k in jobs:
|
|
|
|
k.cancel()
|
|
|
|
|
|
|
|
|
|
|
|
if failure:
|
|
|
|
print("Error(s) occured, aborting!", file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2021-10-26 06:24:44 +00:00
|
|
|
|
|
|
|
|
2021-10-26 17:57:58 +00:00
|
|
|
print("\n\n\033[32;1mAll builds finished successfully; pushing manifests...\033[0m\n")
|
|
|
|
|
|
|
|
|
|
|
|
def push_manifest(latest, tags):
|
|
|
|
if failure:
|
|
|
|
raise ChildProcessError()
|
|
|
|
|
|
|
|
linelock.acquire()
|
2021-10-28 16:49:20 +00:00
|
|
|
global lineno
|
2021-10-26 17:57:58 +00:00
|
|
|
myline = lineno
|
2021-10-28 16:49:20 +00:00
|
|
|
lineno += 1
|
|
|
|
print()
|
2021-10-26 17:57:58 +00:00
|
|
|
linelock.release()
|
2021-10-26 06:24:44 +00:00
|
|
|
|
2021-10-26 13:56:27 +00:00
|
|
|
subprocess.run(['docker', 'manifest', 'rm', latest], stderr=subprocess.DEVNULL, check=False)
|
2021-10-26 17:57:58 +00:00
|
|
|
print_line(myline, "\033[33;1mCreating manifest \033[35;1m{}\033[0m".format(latest))
|
|
|
|
run_or_report('docker', 'manifest', 'create', latest, *tags, myline=myline)
|
|
|
|
print_line(myline, "\033[33;1mPushing manifest \033[35;1m{}\033[0m".format(latest))
|
|
|
|
run_or_report('docker', 'manifest', 'push', latest, myline=myline)
|
|
|
|
print_line(myline, "\033[32;1mFinished manifest \033[35;1m{}\033[0m".format(latest))
|
|
|
|
|
|
|
|
|
|
|
|
for latest, tags in manifests.items():
|
|
|
|
jobs.append(executor.submit(push_manifest, latest, tags))
|
|
|
|
|
|
|
|
while len(jobs):
|
|
|
|
j = jobs.pop(0)
|
|
|
|
try:
|
|
|
|
j.result()
|
|
|
|
except (ChildProcessError, subprocess.CalledProcessError):
|
|
|
|
for k in jobs:
|
|
|
|
k.cancel()
|
|
|
|
|
|
|
|
|
|
|
|
print("\n\n\033[32;1mAll done!\n")
|