-
Notifications
You must be signed in to change notification settings - Fork 88
/
Earthfile
522 lines (469 loc) · 18.9 KB
/
Earthfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
# Earthly Intro: https://docs.earthly.dev/
# Earthfile Reference: https://docs.earthly.dev/docs/earthfile
# Quick notes:
# • The shell script at ".evergreen/earthly.sh" can be used to automatically
# download and use a fixed version of Earthly that is compatible with
# this file version. Execute the shell script as if it were the Earthly
# executable itself.
# • In this file, the convention is to copy the source tree into /s/libmongocrypt
# • Earthly copies the "build context" (working directory) into the local buildkit
# daemon before each build execution. (Similar to the Docker build context).
# If you have a large amount of data in the working directory, this could be
# slow. The ".earthlyignore" file specifies patterns of files and directories
# to exclude from the context upload. Modify it to suite your needs, if necessary.
# • Only a subset of the source tree is COPY'd into the build environment. Files
# outside of this set will not be available in the build. See the COPY_SOURCE
# command for the list.
# • Modification at any layer will invalidate caching on all subsequent build
# layers. This is important and by-design in Earthly. Push infrequently-modified
# operations to earlier in the process the pipeline to make better use of
# the cache.
#
# This file has a few major sections:
# - Setup COMMANDs
# - Utility COMMANDs
# - Environment targets
# - Build/test/CI targets
#
# All environment targets begin with "env.". All build targets (should) accept an "env"
# parameter that specifies the name of the environment to use for the task. The name
# of an environment is specified following the "env." prefix. For example, the
# Ubuntu 22.04 environment is named "u22", so its environment target is "env.u22",
# and can be used i.e. "earthly +build --env=u22"
#
# The following environment are defined in this file:
# • u22 - Ubuntu 22.04
# • u20 - Ubuntu 20.04
# • u18 - Ubuntu 18.04
# • u16 - Ubuntu 16.04
# • u14 - Ubuntu 14.04
# • rl8 - RockyLinux 8 - Stand-in for RHEL 8
# • c7 - CentOS 7 - Stand-in for RHEL 7
# • c6 - CentOS 6 - Stand-in for RHEL 6
# • amzn1 - AmazonLinux (2018.03)
# • amzn2 - AmazonLinux 2
# • deb9 - Debian 9.2
# • deb10 - Debian 10.0
# • deb11 - Debian 11.0
# • deb12 - Debian 12.0
# • sles15 - OpenSUSE Leap 15.0
# • alpine - Alpine Linux 3.18
#
# When adding new environments, always pull from a fully-qualified image ID:
# • DO NOT: "ubuntu"
# • DO NOT: "ubuntu:latest"
# • DO NOT: "ubuntu:22.10"
# • DO: "docker.io/library/ubuntu:22.10"
# ###
VERSION --use-cache-command 0.6
FROM docker.io/library/alpine:3.16
WORKDIR /s
init:
# Special initializing target that sets up the base image and adds the "__install"
# script. This scripts abstracts around the underlying package manager interface
# to "do the right thing" when you want to install packages. Package names will
# still need to be spelled correctly for the respective system.
#
# Invoke +init with a "--base" parameter that specifies the base image to pull
ARG --required base
FROM $base
COPY etc/install-package.sh /usr/local/bin/__install
RUN chmod +x /usr/local/bin/__install
ENV USER_CACHES_DIR=/Cache
# Environment setup commands below. Each provides the basic environment for a
# libmongocrypt build. Additional packages and setup may be required for
# individual tasks.
DEBIAN_SETUP:
# Setup for a debian-like build environment. Used for both Debian and Ubuntu
COMMAND
RUN __install build-essential g++ libssl-dev curl unzip python3 pkg-config \
git ccache findutils ca-certificates
REDHAT_SETUP:
# Setup for a redhat-like build environment. Used for CentOS and RockyLinux.
COMMAND
RUN __install epel-release && \
__install gcc-c++ make openssl-devel curl unzip git ccache findutils \
patch
CENTOS6_SETUP:
# Special setup for CentOS6: The packages have been moved to the vault, so
# we need to enable the vault repos before we perform any __installs
COMMAND
RUN rm /etc/yum.repos.d/*.repo
COPY etc/c6-vault.repo /etc/yum.repos.d/CentOS-Base.repo
DO +REDHAT_SETUP
AMZ_SETUP:
# Setup for Amazon Linux.
COMMAND
# amzn1 has "python38", but amzn2 has "python3." Try both
RUN __install python3 || __install python38
RUN __install gcc-c++ make openssl-devel curl unzip tar gzip \
openssh-clients patch git
SLES_SETUP:
# Setup for a SLES/SUSE build environment
COMMAND
RUN __install gcc-c++ make libopenssl-devel curl unzip tar gzip python3 \
patch git xz which
ALPINE_SETUP:
# Setup for an Alpine Linux build environment
COMMAND
RUN __install make bash gcc g++ unzip curl tar gzip git musl-dev \
linux-headers openssl-dev python3
# Environment targets are defined below. These do not have build outputs, but
# are rather themselves the "outputs" to be used as the environment for subsequent
# tasks
env.c6:
# A CentOS 6 environment.
FROM +init --base=docker.io/library/centos:6
DO +CENTOS6_SETUP
env.c7:
# A CentOS 7 environment.
FROM +init --base=docker.io/library/centos:7
DO +REDHAT_SETUP
env.rl8:
# CentOS 8 is cancelled. Use RockyLinux 8 for our RHEL 8 environment.
FROM +init --base=docker.io/library/rockylinux:8
DO +REDHAT_SETUP
# Utility command for Ubuntu environments
ENV_UBUNTU:
COMMAND
ARG --required version
FROM +init --base=docker.io/library/ubuntu:$version
DO +DEBIAN_SETUP
env.u14:
# An Ubuntu 14.04 environment
DO +ENV_UBUNTU --version 14.04
env.u16:
# An Ubuntu 16.04 environment
DO +ENV_UBUNTU --version 16.04
env.u18:
# An Ubuntu 18.04 environment
DO +ENV_UBUNTU --version 18.04
env.u20:
# An Ubuntu 20.04 environment
DO +ENV_UBUNTU --version 20.04
env.u22:
# An Ubuntu 22.04 environment
DO +ENV_UBUNTU --version 22.04
env.amzn1:
# An Amazon "1" environment. (AmazonLinux 2018)
FROM +init --base=docker.io/library/amazonlinux:2018.03
DO +AMZ_SETUP
env.amzn2:
# An AmazonLinux 2 environment
FROM +init --base=docker.io/library/amazonlinux:2
DO +AMZ_SETUP
# Utility command for Debian setup
ENV_DEBIAN:
COMMAND
ARG --required version
FROM +init --base=docker.io/library/debian:$version
IF [ $version = "9.2" ]
# Update source list for archived Debian stretch packages.
# Refer: https://unix.stackexchange.com/a/743865/260858
RUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list
END
DO +DEBIAN_SETUP
env.deb9:
# A Debian 9.2 environment
DO +ENV_DEBIAN --version 9.2
env.deb10:
# A Debian 10.0 environment
DO +ENV_DEBIAN --version 10.0
env.deb-unstable:
DO +ENV_DEBIAN --version=unstable
env.deb11:
# A Debian 11.0 environment
DO +ENV_DEBIAN --version 11.0
env.deb12:
# A Debian 12.0 environment
DO +ENV_DEBIAN --version 12.0
env.sles15:
# An OpenSUSE Leap 15.0 environment.
FROM +init --base=docker.io/opensuse/leap:15.0
DO +SLES_SETUP
env.alpine:
FROM +init --base=docker.io/library/alpine:3.18
DO +ALPINE_SETUP
# Utility: Warm-up obtaining CMake and Ninja for the build. This is usually
# very quick, but on some platforms we need to compile them from source.
CACHE_WARMUP:
COMMAND
# Copy only the scripts that are strictly necessary for the operation, to
# avoid cache invalidation later on.
COPY .evergreen/setup-env.sh \
.evergreen/init.sh \
.evergreen/ensure-cmake.sh \
.evergreen/ensure-ninja.sh \
/T/
RUN bash /T/ensure-cmake.sh
RUN env NINJA_EXE=/usr/local/bin/ninja \
bash /T/ensure-ninja.sh
COPY_SOURCE:
COMMAND
COPY --dir \
.git/ \
cmake/ \
kms-message/ \
test/ \
debian/ \
src/ \
doc/ \
etc/ \
LICENSE \
.evergreen/ \
third-party/ \
CMakeLists.txt \
"/s/libmongocrypt"
COPY --dir bindings/cs/ "/s/libmongocrypt/bindings/"
BUILD_EXAMPLE_STATE_MACHINE:
COMMAND
COPY test/example-state-machine.c /s/
RUN pkg-config --exists libmongocrypt --print-errors && \
gcc /s/example-state-machine.c \
-o /s/example-state-machine \
$(pkg-config --cflags --libs libmongocrypt)
COPY --dir test/example /s/test/example
RUN cd /s && /s/example-state-machine
rpm-build:
FROM +init --base fedora:38
GIT CLONE https://src.fedoraproject.org/rpms/libmongocrypt.git /R
# Install the packages listed by "BuildRequires" and rpm-build:
RUN __install $(awk '/^BuildRequires:/ { print $2 }' /R/libmongocrypt.spec) \
rpm-build
DO +COPY_SOURCE
RUN cp -r /s/libmongocrypt/. /R
RUN awk -f /R/etc/rpm/tweak.awk < /R/libmongocrypt.spec > /R/libmongocrypt.2.spec
RUN rpmbuild -ba /R/libmongocrypt.2.spec \
-D "_topdir /X" \
-D "_sourcedir /R"
SAVE ARTIFACT /X/RPMS /
SAVE ARTIFACT /X/SRPMS /
rpm-install-runtime:
# Install the runtime RPM
FROM +init --base fedora:38
COPY +rpm-build/RPMS /tmp/libmongocrypt-rpm/
RUN dnf makecache
RUN __install $(find /tmp/libmongocrypt-rpm/ -name 'libmongocrypt-1.*.rpm')
rpm-install-dev:
# Install the development RPM
FROM +rpm-install-runtime
COPY +rpm-build/RPMS /tmp/libmongocrypt-rpm/
RUN dnf makecache
RUN __install $(find /tmp/libmongocrypt-rpm/ -name 'libmongocrypt-devel-*.rpm')
rpm-devel-test:
# Attempt to build a small app using pkg-config and the dev RPM
FROM +rpm-install-dev
RUN __install gcc
DO +BUILD_EXAMPLE_STATE_MACHINE
SAVE ARTIFACT /s/example-state-machine /
rpm-runtime-test:
# Attempt to run a libmongocrypt-using app with the runtime RPM installed
FROM +rpm-install-runtime
COPY +rpm-devel-test/example-state-machine /s/
COPY --dir test/example /s/test/example
RUN cd /s/ && /s/example-state-machine
# A target to build the debian package. Options:
# • --env=[...] (default: deb-unstable)
# · Set the environment for the build. Affects which packages are available
# for build dependencies.
# NOTE: Uncommited local changes will be ignored and not affect the result!
deb-build:
ARG env=deb-unstable
FROM +env.$env
RUN __install git-buildpackage fakeroot debhelper cmake libbson-dev \
libintelrdfpmath-dev
DO +COPY_SOURCE
WORKDIR /s/libmongocrypt
RUN git clean -fdx && git reset --hard
RUN python3 etc/calc_release_version.py > VERSION_CURRENT
RUN git add -f VERSION_CURRENT && \
git -c user.name=anon -c user.email=anon@localhost \
commit VERSION_CURRENT -m 'Set version' && \
env LANG=C bash debian/build_snapshot.sh && \
debc ../*.changes && \
dpkg -i ../*.deb
SAVE ARTIFACT /s/*.deb /debs/
deb-install-runtime:
# Install the runtime deb package
FROM +init --base=docker.io/library/debian:unstable
COPY +deb-build/debs/libmongocrypt0*.deb /tmp/lmc.deb
RUN __install /tmp/lmc.deb
deb-install-dev:
# Install the development deb package
FROM +deb-install-runtime
COPY +deb-build/debs/libmongocrypt-dev*.deb /tmp/lmc-dev.deb
RUN __install /tmp/lmc-dev.deb
deb-dev-test:
# Attempt to build a small app using pkg-config and the dev deb package
FROM +deb-install-dev
RUN __install pkg-config gcc
DO +BUILD_EXAMPLE_STATE_MACHINE
SAVE ARTIFACT /s/example-state-machine /
deb-runtime-test:
# Attempt to run a libmongocrypt-using app with the runtime DEB installed
FROM +deb-install-runtime
COPY +deb-dev-test/example-state-machine /s/
COPY --dir test/example /s/test/example
RUN cd /s/ && /s/example-state-machine
packaging-full-test:
BUILD +deb-runtime-test
BUILD +rpm-runtime-test
check-format:
FROM python:3.11.2-slim-buster
RUN pip install pipx
COPY etc/format* /X/etc/
COPY .evergreen/init.sh /X/.evergreen/
RUN /X/etc/format.sh # Does nothing, but warms the cache
COPY --dir .clang-format src test /X/
RUN /X/etc/format-all.sh --dry-run -Werror --verbose
# The main "build" target. Options:
# • --env=[...] (default "u22")
# · Set the environment for the build. Any name of and "env.<name>" targets
# can be used.
# • --persist_build={true,false} (default "true")
# · Persist the build directory between executions. Enables incremental
# compilation and reusing of configuration between builds. The build
# directory is NOT shared between different "--env" environments, only
# within a single environment.
build:
ARG env=u22
FROM +env.$env
DO +CACHE_WARMUP
DO +COPY_SOURCE
WORKDIR /s
ARG persist_build=true
IF $persist_build
CACHE /s/libmongocrypt/cmake-build
END
RUN env USE_NINJA=1 bash libmongocrypt/.evergreen/build_all.sh
SAVE ARTIFACT /s/install /libmongocrypt-install
# `create-deb-packages-and-repos` creates the .deb packages and repo directories intended for the PPA on debian-like distros. Options:
# • --env=[...]
# · Set the environment for the build. Only debian-like environments are supported.
# • --packager_distro=[...] is passed to `create-packages-and-repos.sh`
# • --packager_arch=[...] is passed to `create-packages-and-repos.sh`
create-deb-packages-and-repos:
ARG env
FROM +env.$env
DO +CACHE_WARMUP
DO +COPY_SOURCE
WORKDIR /s
RUN __install dh-make dpkg-dev apt-utils
ARG packager_distro
ARG packager_arch
RUN env \
WORKDIR=/s \
PYTHON=python3 \
HAS_PACKAGES=true \
PACKAGER_DISTRO=$packager_distro \
PACKAGER_ARCH=$packager_arch \
bash libmongocrypt/.evergreen/create-packages-and-repos.sh
SAVE ARTIFACT libmongocrypt/repo AS LOCAL repo
# `test-deb-packages-from-ppa` tests Debian and Ubuntu packages installed on the PPA.
# • --env=[...] (default "deb11")
# · Set the environment for the build. Only debian-like environments are supported.
# • --distro=[...] (default "debian bullseye")
# · Has the form: "(debian|ubuntu) (name)". Must match distro set for `--env`.
# • --version=[...] (default "development"). The libmongocrypt package version.
# · May refer to a release branch (e.g. "1.8"). Release branch packages are updated on a tagged release.
# · "development" packages are updated by the `publish-packages` tasks every commit.
test-deb-packages-from-ppa:
ARG env="deb11"
ARG distro="debian bullseye"
ARG version="development"
FROM +env.$env
WORKDIR /s
RUN __install apt-transport-https
# Install libmongocrypt following install steps described in README.md:
RUN curl -s --location https://pgp.mongodb.com/libmongocrypt.asc | gpg --dearmor >/etc/apt/trusted.gpg.d/libmongocrypt.gpg
RUN echo "deb https://libmongocrypt.s3.amazonaws.com/apt/$distro/libmongocrypt/$version main" | tee /etc/apt/sources.list.d/libmongocrypt.list
# Test using libmongocrypt:
RUN __install libmongocrypt-dev gcc
RUN echo "
#include <stdio.h>
#include <mongocrypt/mongocrypt.h>
int main(void) {
const char *ver = mongocrypt_version(NULL);
printf (\"Using libmongocrypt %s\", ver);
}" > test.c
RUN gcc -o test.out test.c $(pkg-config --libs --cflags libmongocrypt)
RUN ./test.out
# `sign` uses Garasign to sign a file with the libmongocrypt key.
# Requires prior authentication with Artifactory.
# See: https://docs.devprod.prod.corp.mongodb.com/release-tools-container-images/garasign/garasign_signing/.
sign:
ARG --required file_to_sign
ARG --required output_file
FROM artifactory.corp.mongodb.com/release-tools-container-registry-local/garasign-gpg
WORKDIR /s
COPY ${file_to_sign} /s/file
RUN --secret garasign_username --secret garasign_password \
GRS_CONFIG_USER1_USERNAME=${garasign_username} \
GRS_CONFIG_USER1_PASSWORD=${garasign_password} \
/bin/bash -c "gpgloader && gpg --yes -v --armor -o /s/file.asc --detach-sign /s/file"
# Verify the signature
RUN touch /keyring
RUN curl -sS https://pgp.mongodb.com/libmongocrypt.pub | gpg -q --no-default-keyring --keyring "/keyring" --import -
RUN gpgv --keyring "/keyring" "/s/file.asc" "/s/file"
SAVE ARTIFACT /s/file.asc AS LOCAL ${output_file}
# silkbomb:
# An environment with the `silkbomb` command.
#
# See https://docs.devprod.prod.corp.mongodb.com/mms/python/src/sbom/silkbomb/ for documentation of silkbomb.
silkbomb:
FROM artifactory.corp.mongodb.com/release-tools-container-registry-public-local/silkbomb:1.0
# Alias the silkbom executable to a simpler name:
RUN ln -s /python/src/sbom/silkbomb/bin /usr/local/bin/silkbomb
# sbom-generate:
# Generate/update the etc/cyclonedx.sbom.json file from the etc/purls.txt file.
#
# This target will update the existing etc/cyclonedx.sbom.json file in-place based
# on the content of etc/purls.txt.
#
sbom-generate:
FROM +silkbomb
# Copy in the relevant files:
WORKDIR /s
COPY etc/purls.txt etc/cyclonedx.sbom.json /s/
# Update the SBOM file:
RUN silkbomb update \
--purls purls.txt \
--sbom-in cyclonedx.sbom.json \
--sbom-out cyclonedx.sbom.json
# Save the result back to the host:
SAVE ARTIFACT /s/cyclonedx.sbom.json AS LOCAL etc/cyclonedx.sbom.json
# sbom-download:
# Download the Augmented SBOM file from Silk.
#
# See https://wiki.corp.mongodb.com/display/DRIVERS/Using+AWS+Secrets+Manager+to+Store+Testing+Secrets for instructions to get secrets from AWS Secrets Manager. Secrets are available under `drivers/libmongocrypt`.
#
sbom-download:
ARG --required out
ARG --required branch
FROM +silkbomb
WORKDIR /s
# Download the Augmented SBOM file:
RUN --no-cache --secret silk_client_id --secret silk_client_secret \
SILK_CLIENT_ID=${silk_client_id} \
SILK_CLIENT_SECRET=${silk_client_secret} \
silkbomb download \
--sbom-out cyclonedx.augmented.sbom.json \
--silk-asset-group libmongocrypt-${branch}
# Save the result back to the host:
SAVE ARTIFACT /s/cyclonedx.augmented.sbom.json AS LOCAL ${out}
RUN echo "Augmented SBOM saved to ${out}"
# silk-create-asset-group:
# Create an asset group for Silk.
#
# See https://wiki.corp.mongodb.com/display/DRIVERS/Using+AWS+Secrets+Manager+to+Store+Testing+Secrets for instructions to get secrets from AWS Secrets Manager. Secrets are available under `drivers/libmongocrypt`.
#
silk-create-asset-group:
ARG --required branch
FROM +env.alpine
RUN __install curl jq
COPY etc/silk-create-asset-group.sh /s/silk-create-asset-group.sh
RUN --no-cache --secret silk_client_id --secret silk_client_secret \
silk_client_id=${silk_client_id} \
silk_client_secret=${silk_client_secret} \
branch=${branch} \
/s/silk-create-asset-group.sh