forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.jsonnet
More file actions
546 lines (491 loc) · 20.9 KB
/
common.jsonnet
File metadata and controls
546 lines (491 loc) · 20.9 KB
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
# This file is shared between many repositories.
# All objects defined here are mixins, so you can use them like:
# { name: "myjob" } + common.linux_amd64 + common.jdks.labsjdk17ce + common.deps.sulong + ...
# Note that using a os-arch mixin like linux_amd64 mixin is required for using common.deps.
local common_json = import "../common.json";
{
# JDK definitions
# ***************
local jdk_base = {
name: error "name not set", # string; The JDK provider, e.g. "jpg-jdk", "labsjdk"
version: error "version not set", # string; Full version string, e.g., "ce-21+35-jvmci-23.1-b15"
jdk_version:: error "jdk_version not set", # int; The major JDK version, e.g., 21
jdk_name:: "jdk%d" % self.jdk_version, # string; The major JDK version with the JDK prefix.
# For the latest (unreleased) this should be overridden with "jdk-latest"
# otherwise the jdk_version with the "jdk" prefix, e.g., "jdk21".
# This should be use for constructing CI job names.
# Optional:
# "build_id": "33",
# "release": true,
# "platformspecific": true,
# "extrabundles": ["static-libs"],
},
# ***************
local variants(name) = [name, name + "Debug", name + "-llvm"],
# gets the JDK major version from a labsjdk version string (e.g., "ce-21+35-jvmci-23.1-b15" -> 21)
local parse_labsjdk_version(jdk) =
if jdk.name == "jpg-jdk" then std.parseInt(jdk.version) else
local version = jdk.version;
assert std.startsWith(version, "ce-") || std.startsWith(version, "ee-") : "Unsupported labsjdk version: " + version;
local number_prefix(str) =
if std.length(str) == 0 || std.length(std.findSubstr(str[0], "0123456789")) == 0 then
""
else
str[0] + number_prefix(str[1:])
;
std.parseInt(number_prefix(version[3:]))
,
# gets the build_id from a labsjdk version string (e.g., "ce-21+35-jvmci-23.1-b15" -> 21)
local get_labsjdk_build_id(jdk) =
local _parts = std.split(jdk.version, "-");
local _version_build_id = std.split(_parts[1], "+");
_version_build_id[1]
,
local jdks_data = {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: 17 }
for name in ["oraclejdk17"] + variants("labsjdk-ce-17") + variants("labsjdk-ee-17")
} + {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: 19 }
for name in ["oraclejdk19"] + variants("labsjdk-ce-19") + variants("labsjdk-ee-19")
} + {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: 20 }
for name in ["oraclejdk20"] + variants("labsjdk-ce-20") + variants("labsjdk-ee-20")
} + {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: 21 }
for name in ["oraclejdk21"] + variants("labsjdk-ce-21") + variants("labsjdk-ee-21")
} + {
'oraclejdk24': jdk_base + common_json.jdks["oraclejdk24"] + { jdk_version:: 24 },
} + {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: 25 }
for name in ["oraclejdk25"]
} + {
# Synthesize labsjdk-*-25 from labsjdk-*-latest
# This is intended for jobs that specifically need the 25 LTS JDK (e.g., espresso for its guest).
# When running the compiler or the native image generator "latest" should be used instead.
# When latest moves past 25, jobs using 25 should be reviwed and if they are still needed labsjdk-(ce|ee)-25 should
# be added to common.json.
# Note that the assert below unfortunately doesn't work in the sjsonnet version used currently in the CI (GR-40975).
[std.strReplace(name, 'latest', '25')]: jdk_base + common_json.jdks[name] + { assert parse_labsjdk_version(self) == 25, jdk_version:: 25 }
for name in variants("labsjdk-ce-latest") + variants("labsjdk-ee-latest")
} + {
[name]: jdk_base + common_json.jdks[name] + { jdk_version:: parse_labsjdk_version(self), jdk_name:: "jdk-latest"}
for name in ["oraclejdk-latest"] + variants("labsjdk-ce-latest") + variants("labsjdk-ee-latest")
} + {
'graalvm-ee-21': jdk_base + common_json.jdks["graalvm-ee-21"] + { jdk_version:: 21 },
'graalvm-ee-25-ea': jdk_base + common_json.jdks["graalvm-ee-25-ea"] + { jdk_version:: 25 },
},
# We do not want to expose galahad-jdk, labsjdk-(ce|ee)-25 are synthetized from latest
local is_labsjdk_25(x) = std.startsWith(x, "labsjdk-ee-25") || std.startsWith(x, "labsjdk-ce-25"),
assert std.assertEqual([x for x in std.objectFields(common_json.jdks) if x != "galahad-jdk"], [x for x in std.objectFields(jdks_data) if !is_labsjdk_25(x)]),
# Verify oraclejdk-latest and labsjdk-ee-latest versions match
assert
local _labsjdk = common_json.jdks["labsjdk-ee-latest"];
local _oraclejdk = common_json.jdks["oraclejdk-latest"];
local _ov = _oraclejdk.build_id;
local _lv = std.strReplace(_labsjdk.version, "ee-", "jdk-");
# Skip the check if we are not using a labsjdk. This can happen on JDK integration branches.
local no_labsjdk = _labsjdk.name != "labsjdk";
assert no_labsjdk || std.startsWith(_lv, _ov) : "update oraclejdk-latest to match labsjdk-ee-latest: %s+%s vs %s" % [_oraclejdk.version, _oraclejdk.build_id, _labsjdk.version];
true,
# The raw jdk data, the same as common_json.jdks + { jdk_version:: }
jdks_data: jdks_data,
# Mixins to include and download the given JDK
jdks: {
[name]: {
downloads+: {
[if std.endsWith(name, "llvm") then "LLVM_JAVA_HOME" else "JAVA_HOME"]: jdks_data[name]
},
jdk_version:: jdks_data[name].jdk_version,
jdk_name:: jdks_data[name].jdk_name,
},
for name in std.objectFields(jdks_data)
} + {
# Some convenient JDK aliases which don't require ["name"] for frequently-used JDKs
labsjdk17ce: self["labsjdk-ce-17"],
labsjdk17ee: self["labsjdk-ee-17"],
labsjdk20ce: self["labsjdk-ce-20"],
labsjdk20ee: self["labsjdk-ee-20"],
labsjdk21ce: self["labsjdk-ce-21"],
labsjdk21ee: self["labsjdk-ee-21"],
labsjdkLatestCE: self["labsjdk-ce-latest"],
labsjdkLatestEE: self["labsjdk-ee-latest"],
oraclejdkLatest: self["oraclejdk-latest"],
},
# The devkits versions reflect those used to build the JVMCI JDKs (e.g., see devkit_platform_revisions in <jdk>/make/conf/jib-profiles.js).
# See deps.windows_devkit to add a devkit on windows conveniently.
devkits: {
"windows-jdk17": { packages+: { "devkit:VS2022-17.1.0+1": "==0" }},
"windows-jdk19": { packages+: { "devkit:VS2022-17.1.0+1": "==0" }},
"windows-jdk20": { packages+: { "devkit:VS2022-17.1.0+1": "==0" }},
"windows-jdk21": { packages+: { "devkit:VS2022-17.1.0+1": "==1" }},
"windows-jdk-latest": { packages+: { "devkit:VS2022-17.13.2+1": "==0" }},
"windows-jdkLatest": self["windows-jdk-latest"],
"linux-jdk17": { packages+: { "devkit:gcc11.2.0-OL6.4+1": "==0" }},
"linux-jdk19": { packages+: { "devkit:gcc11.2.0-OL6.4+1": "==0" }},
"linux-jdk20": { packages+: { "devkit:gcc11.2.0-OL6.4+1": "==0" }},
"linux-jdk21": { packages+: { "devkit:gcc11.2.0-OL6.4+1": "==0" }},
"linux-jdk-latest": { packages+: { "devkit:gcc13.2.0-OL6.4+1": "==0" }},
"linux-jdkLatest": self["linux-jdk-latest"],
},
# Dependencies
# ************
deps: {
# These dependencies are included in Build GraalVM platforms, but not in bare platforms
mx: {
environment+: {
MX_PYTHON: "python3.8",
PYTHONIOENCODING: "utf-8",
},
packages+: {
python3: "==3.8.10",
"pip:ninja_syntax": common_json.pip.ninja_syntax,
mx: common_json.mx_version,
},
python_version: "3", # To use the correct virtualenv
},
common_catch_files: {
catch_files+: [
# There are additional catch_files-like patterns in buildbot/graal/catcher.py for:
# * hs_err_pid*.log files
# * Dumping IGV graphs to (?P<filename>.+(\.gv\.xml|\.bgv))
# * CFGPrinter: Output to file (?P<filename>.*compilations-.+\.cfg)
# There are defined there for efficiency reasons.
# Keep in sync with jdk.graal.compiler.debug.StandardPathUtilitiesProvider#DIAGNOSTIC_OUTPUT_DIRECTORY_MESSAGE_REGEXP
"Graal diagnostic output saved in '(?P<filename>[^']+)'",
# Keep in sync with jdk.graal.compiler.debug.DebugContext#DUMP_FILE_MESSAGE_REGEXP
"Dumping debug output to '(?P<filename>[^']+)'",
# Keep in sync with com.oracle.svm.hosted.ProgressReporter#printErrorMessage
"Please inspect the generated error report at: '(?P<filename>[^']+)'",
# Keep in sync with jdk.graal.compiler.test.SubprocessUtil#makeArgfile
"@(?P<filename>.*SubprocessUtil-argfiles.*\\.argfile)",
# Keep in sync with com.oracle.truffle.api.test.SubprocessTestUtils#makeArgfile
"@(?P<filename>.*SubprocessTestUtils-argfiles.*\\.argfile)",
# Keep in sync with mx_gate.py:get_jacoco_agent_args
"JaCoCo agent config: '(?P<filename>[^']+)'",
],
},
common_env: {
environment+: {
# Enforce experimental option checking in CI (GR-47922)
NATIVE_IMAGE_EXPERIMENTAL_OPTIONS_ARE_FATAL: "true",
},
},
# These dependencies are not included by default in any platform object
# Not included by default in $.windows_amd64 and $.windows_server_2016_amd64 because it needs jdk_name.
# As a note, Native Image needs this to build.
windows_devkit:: {
packages+: if self.os == "windows" then $.devkits["windows-" + self.jdk_name].packages else {},
},
jdt: {
environment+: {
JDT: "builtin",
},
},
pylint:: {
packages+: {
"pip:pylint": common_json.pip.pylint,
"pip:lazy-object-proxy": common_json.pip["lazy-object-proxy"],
},
# Required to keep pylint happy on Darwin
# https://coderwall.com/p/-k_93g/mac-os-x-valueerror-unknown-locale-utf-8-in-python"
environment+: if self.os == "darwin" then {
LC_ALL: "en_US.UTF-8",
} else {},
},
black:: {
packages+: {
# black is used to format python source code
"pip:black": common_json.pip.black,
},
},
cmake:: {
packages+: {
cmake: "==3.22.2",
},
},
gradle:: {
downloads+: {
GRADLE_JAVA_HOME: jdks_data["oraclejdk21"],
}
},
# ProGuard does not yet run on JDK 25
proguard: {
downloads+: if 'jdk_version' in self && self.jdk_version > 21 then {
TOOLS_JAVA_HOME: jdks_data['oraclejdk24'],
IGV_JAVA_HOME: jdks_data['oraclejdk21'],
} else {},
},
# GR-49566: SpotBugs does not yet run on JDK 22
spotbugs: {
downloads+: if 'jdk_version' in self && self.jdk_version > 21 then {
TOOLS_JAVA_HOME: jdks_data['oraclejdk21'],
} else {},
},
maven:: {
local this = self,
packages+: (if self.os == "linux" && self.arch == "amd64" then {
maven: '==3.9.10',
} else {}),
# no maven package available on other platforms
downloads+: (if self.os != "linux" || self.arch != "amd64" then {
# GR-68921: 3.9.10 does not work on Windows
MAVEN_HOME: {name: 'maven', version: (if this.os == "windows" then '3.3.9' else '3.9.10'), platformspecific: false},
} else {}),
setup+: (if self.os != "linux" || self.arch != "amd64" then [
['set-export', 'PATH', (if self.os == "windows" then '$MAVEN_HOME\\bin;$PATH' else '$MAVEN_HOME/bin:$PATH')],
] else []),
},
espresso:: {
downloads+: {
EXTRA_JAVA_HOMES+: {
pathlist+: [jdks_data["oraclejdk21"], jdks_data["oraclejdk25"]],
}
}
},
sulong:: self.cmake + {
packages+: if self.os == "windows" then {
msvc_source: "==14.0",
} else {},
},
graalnodejs:: {
local this = self,
packages+: if self.os == "linux" then {
cmake: "==3.22.2",
} else {},
environment+: if self.os == "windows" then {
local devkits_version = std.filterMap(
function(p) std.startsWith(p, 'devkit:VS'), # filter function
function(p) std.substr(p, std.length('devkit:VS'), 4), # map function
std.objectFields(this.packages) # array
)[0],
DEVKIT_VERSION: devkits_version, # TODO: dep of Graal.nodejs
} else {},
downloads+: if self.os == "windows" then {
NASM: {name: 'nasm', version: '2.14.02', platformspecific: true},
} else {},
},
graalpy:: self.gradle + self.cmake + self.maven + {
packages+: if (self.os == "linux") then {
libffi: '==3.2.1',
bzip2: '==1.0.6',
zlib: '==1.2.11',
} else {},
},
wasm:: {
downloads+: {
WABT_DIR: {name: 'wabt', version: '1.0.37', platformspecific: true},
},
environment+: {
WABT_DIR: '$WABT_DIR/bin',
},
},
wasm_ol8:: {
downloads+: {
WABT_DIR: {name: 'wabt', version: '1.0.37-ol8', platformspecific: true},
},
environment+: {
WABT_DIR: '$WABT_DIR/bin',
},
},
emsdk_ol8:: {
downloads+: {
EMSDK_DIR: {name: 'emsdk', version: '4.0.10', platformspecific: true},
},
environment+: {
EMCC_DIR: '$EMSDK_DIR/upstream/emscripten/'
}
},
fastr:: {
# Note: On both Linux and MacOS, FastR depends on the gnur module and on gfortran
# of a specific version (4.8.5 on Linux, 10.2.0 on MacOS)
# However, we do not need to load those modules, we only configure specific environment variables to
# point to these specific modules. These modules and the configuration is only necessary for installation of
# some R packages (that have Fortran code) and in order to run GNU-R
packages+:
if (self.os == "linux" && self.arch == "amd64") then {
readline: '==6.3',
pcre2: '==10.37',
gnur: '==4.0.3-gcc4.8.5-pcre2',
} + if (std.objectHasAll(self, 'os_distro') && self['os_distro'] == 'ol' && std.objectHasAll(self, 'os_distro_version') && self['os_distro_version'] == '9') then {curl: '==7.78.0'} else {curl: '==7.50.1'}
else {},
environment+:
if (self.os == "linux" && self.arch == "amd64") then {
TZDIR: '/usr/share/zoneinfo',
PKG_INCLUDE_FLAGS_OVERRIDE : '-I/cm/shared/apps/bzip2/1.0.6/include -I/cm/shared/apps/xz/5.2.2/include -I/cm/shared/apps/pcre2/10.37/include -I/cm/shared/apps/curl/7.50.1/include',
PKG_LDFLAGS_OVERRIDE : '-L/cm/shared/apps/bzip2/1.0.6/lib -L/cm/shared/apps/xz/5.2.2/lib -L/cm/shared/apps/pcre2/10.37/lib -L/cm/shared/apps/curl/7.50.1/lib -L/cm/shared/apps/gcc/4.8.5/lib64',
FASTR_FC: '/cm/shared/apps/gcc/4.8.5/bin/gfortran',
FASTR_CC: '/cm/shared/apps/gcc/4.8.5/bin/gcc',
GNUR_HOME_BINARY: '/cm/shared/apps/gnur/4.0.3_gcc4.8.5_pcre2-10.37/R-4.0.3',
FASTR_RELEASE: 'true',
}
else {},
downloads+:
if (self.os == "linux" && self.arch == "amd64") then {
BLAS_LAPACK_DIR: { name: 'fastr-403-blas-lapack-gcc', version: '4.8.5', platformspecific: true },
F2C_BINARY: { name: 'f2c-binary', version: '7', platformspecific: true },
FASTR_RECOMMENDED_BINARY: { name: 'fastr-recommended-pkgs', version: '16', platformspecific: true },
}
else {},
catch_files+: if (self.os != "windows" && self.arch == "amd64") then [
'GNUR_CONFIG_LOG = (?P<filename>.+\\.log)',
'GNUR_MAKE_LOG = (?P<filename>.+\\.log)',
] else [],
},
svm:: {
packages+: {
cmake: "==3.22.2",
},
environment+: {
DEFAULT_VM: "server",
LANG: "en_US.UTF-8",
},
logs+: [
"../.native-image/*/*/*/*.log",
"*/*.log",
"*/svmbuild/*.log",
"*/svmbuild/images/*.log",
"*/callgrind.*",
"*.log",
],
},
},
# Job frequencies
# ***************
frequencies: {
tier1: {
targets+: ["tier1"],
},
tier2: {
targets+: ["tier2"],
},
tier3: {
targets+: ["tier3"],
},
gate: {
targets+: ["gate"],
},
bench: {
targets+: ["bench"],
},
on_demand: {
targets+: ["ondemand"],
},
post_merge: {
targets+: ["post-merge"],
},
opt_post_merge: {
targets+: ["opt-post-merge"],
tags+: {opt_post_merge +: []},
},
daily: {
targets+: ["daily"],
},
weekly: {
targets+: ["weekly"],
},
monthly: {
targets+: ["monthly"],
}
},
# OS specific file handling
os_utils:: {
local lib_format = {
"windows": "%s.dll",
"linux": "lib%s.so",
"darwin": "lib%s.dylib"
},
# Converts unixpath to an OS specific path
os_path(unixpath):: if self.os == "windows" then std.strReplace(unixpath, "/", "\\") else unixpath,
# Converts unixpath to an OS specific path for an executable
os_exe(unixpath):: if self.os == "windows" then self.os_path(unixpath) + ".exe" else unixpath,
# Converts a base library name to an OS specific file name
os_lib(name):: lib_format[self.os] % name,
},
# Utils
disable_proxies: {
setup+: [
["unset", "HTTP_PROXY", "HTTPS_PROXY", "FTP_PROXY", "NO_PROXY", "http_proxy", "https_proxy", "ftp_proxy", "no_proxy"],
],
},
# Hardware definitions and common fields
# **************************************
# Note that only platforms (os-arch) are exposed (not os and arch separately),
# because this is the simplest way to ensure correct usage and dependencies (e.g. ol7 in linux_amd64).
#
# To add extra "common" fields for your CI:
# * If you already have platforms objects, you could extend them like:
# linux_amd64: common.linux_amd64 + self.my_common,
# * Otherwise, just include your common object as well as one of the os-arch objects below in each job:
# { name: "myjob" } + common.linux_amd64 + self.my_common + ...
#
# This also means self.my_common should no longer include mx, etc as it is already included by the os-arch objects.
# Bare platforms, just the bare minimum and nothing else. Also see Build GraalVM platforms below.
bare:: {
local ol7 = {
docker+: {
image: "buildslave_ol7",
mount_modules: true,
},
},
local ol8 = {
docker+: {
image: "buildslave_ol8",
mount_modules: true,
},
},
local ol9 = {
docker+: {
image: "buildslave_ol9",
mount_modules: true,
},
},
local ubuntu22 = {
docker+: {
image: "buildslave_ubuntu22",
mount_modules: true,
},
},
local linux = { os:: "linux", capabilities+: [self.os] },
# Run darwin jobs on Sonoma or later by excluding all older versions
local darwin = { os:: "darwin", capabilities+: [self.os, "!darwin_bigsur", "!darwin_ventura", "!darwin_monterey"] },
local windows = { os:: "windows", capabilities+: [self.os] },
local amd64 = { arch:: "amd64", capabilities+: [self.arch] },
local aarch64 = { arch:: "aarch64", capabilities+: [self.arch] },
local ol_distro = { os_distro:: "ol" },
local ol7_distro = ol_distro + { os_distro_version:: "7" },
local ol8_distro = ol_distro + { os_distro_version:: "8" },
local ol9_distro = ol_distro + { os_distro_version:: "9" },
linux_amd64: self.linux_amd64_ol7,
linux_amd64_ol7: linux + amd64 + ol7 + ol7_distro,
linux_amd64_ol8: linux + amd64 + ol8 + ol8_distro,
linux_amd64_ol9: linux + amd64 + ol9 + ol9_distro,
linux_aarch64: self.linux_aarch64_ol7,
linux_aarch64_ol7: linux + aarch64 + ol7 + ol7_distro,
linux_aarch64_ol8: linux + aarch64 + ol8 + ol8_distro,
linux_aarch64_ol9: linux + aarch64 + ol9 + ol9_distro,
linux_amd64_ubuntu: linux + amd64 + ubuntu22 + { os_distro:: "ubuntu", os_distro_version:: "22" },
darwin_aarch64: darwin + aarch64,
windows_amd64: windows + amd64,
windows_server_2016_amd64: windows + amd64 + { capabilities+: ["windows_server_2016"] },
},
# Build GraalVM platforms, they include the dependencies listed in `local common =` just below.
# They also include a devtoolset on Oracle Linux, to use the same system toolchain for all builds.
local common = self.deps.mx + self.deps.common_catch_files + self.deps.common_env,
local ol_devtoolset = {
packages+: {
"00:devtoolset": "==12", # GCC 12.2.1, make 4.3, binutils 2.36, valgrind 3.19
},
},
linux_amd64: self.linux_amd64_ol7,
linux_amd64_ol7: self.bare.linux_amd64_ol7 + common + ol_devtoolset,
linux_amd64_ol8: self.bare.linux_amd64_ol8 + common + ol_devtoolset,
linux_amd64_ol9: self.bare.linux_amd64_ol9 + common + ol_devtoolset,
linux_aarch64: self.linux_aarch64_ol7,
linux_aarch64_ol7: self.bare.linux_aarch64_ol7 + common + ol_devtoolset,
linux_aarch64_ol8: self.bare.linux_aarch64_ol8 + common + ol_devtoolset,
linux_aarch64_ol9: self.bare.linux_aarch64_ol9 + common + ol_devtoolset,
linux_amd64_ubuntu: self.bare.linux_amd64_ubuntu + common,
darwin_aarch64: self.bare.darwin_aarch64 + common,
windows_amd64: self.bare.windows_amd64 + common,
windows_server_2016_amd64: self.bare.windows_server_2016_amd64 + common,
}