-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathplatform.go
More file actions
671 lines (618 loc) · 16.7 KB
/
platform.go
File metadata and controls
671 lines (618 loc) · 16.7 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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
package platform
import (
"cmp"
"fmt"
"os/exec"
"regexp"
"sort"
"strings"
mapset "github.com/deckarep/golang-set/v2"
"github.com/mongodb/mongo-tools/release/env"
"github.com/mongodb/mongo-tools/release/version"
)
type OS string
const (
OSWindows OS = "windows"
OSLinux OS = "linux"
OSMac OS = "mac"
)
type Pkg string
const (
PkgDeb Pkg = "deb"
PkgRPM Pkg = "rpm"
)
type Repo string
const (
RepoOrg Repo = "org"
RepoEnterprise Repo = "enterprise"
)
type Arch string
const (
ArchArm64 Arch = "arm64"
// While arm64 and aarch64 are the same architecture, some Linux distros use arm64 and others use aarch64:
// - aarch64: RHEL/Amazon/SUSE
// - arm64: Debian/Ubuntu.
ArchAarch64 Arch = "aarch64"
ArchS390x Arch = "s390x"
ArchPpc64le Arch = "ppc64le"
ArchX86_64 Arch = "x86_64"
)
// Platform represents a platform (a combination of OS, distro,
// version, and architecture) on which we may build/test the tools.
// There should be at least one evergreen buildvariant per platform,
// and there may be multiple.
type Platform struct {
Name string
// This is used to override the variant name. It should only be used for
// special builds. In general, we want to use the OS name + arch for the
// variant name.
VariantName string
Arch Arch
OS OS
Pkg Pkg
Repos []Repo
BuildTags []string
BinaryExt string
SkipForJSONFeed bool
ServerVariantNames mapset.Set[string]
ServerPlatform string
// If set, this a linux release will only be pushed to server repos within this range (inclusive).
MinLinuxServerVersion *version.Version
MaxLinuxServerVersion *version.Version
}
func (p Platform) Variant() string {
if p.VariantName != "" {
return p.VariantName
}
return createVariantName(p.Name, p.Arch)
}
// GetFromEnv returns the Platform for this host, based on the value
// of EVG_VARIANT. It returns an error if EVG_VARIANT is unset or set
// to an unknown value.
func GetFromEnv() (Platform, error) {
variant, err := env.EvgVariant()
if err != nil {
return Platform{}, err
}
if variant == "rhel88-race" {
variant = "rhel88"
}
pf, ok := GetByVariant(variant)
if !ok {
return Platform{}, fmt.Errorf("unknown evg variant %q", variant)
}
return pf, nil
}
// DetectLocal detects the platform for non-evergreen use cases.
func DetectLocal() (Platform, error) {
cmd := exec.Command("uname", "-sm")
out, err := cmd.Output()
if err != nil {
return Platform{}, fmt.Errorf("failed to run uname: %w", err)
}
kernelNameAndArch := strings.TrimSpace(string(out))
pieces := regexp.MustCompile(`[ \t]+`).Split(kernelNameAndArch, -1)
if len(pieces) != 2 {
panic(fmt.Sprintf("Unexpected uname output (%d pieces): %q", len(pieces), string(out)))
}
kernelName := pieces[0]
archName := Arch(pieces[1])
if strings.HasPrefix(kernelName, "CYGWIN") || strings.HasPrefix(kernelName, "MSYS_NT") || strings.HasPrefix(kernelName, "MINGW64_NT") {
pf, ok := GetByVariant("windows")
if !ok {
panic("windows platform name changed")
}
return pf, nil
}
switch kernelName {
case "Linux":
pf, ok := GetByOsAndArch("ubuntu1804", archName)
if !ok {
panic("ubuntu1804 platform name changed")
}
return pf, nil
case "Darwin":
pf, ok := GetByOsAndArch("macos", archName)
if !ok {
panic("macos platform name changed")
}
return pf, nil
}
return Platform{}, fmt.Errorf("failed to detect local platform from kernel name %q", kernelName)
}
func GetByVariant(variant string) (Platform, bool) {
if platformsByVariant == nil {
platformsByVariant = make(map[string]Platform)
for _, p := range platforms {
if _, exists := platformsByVariant[p.Variant()]; exists {
panic("Duplicate variant: " + p.Variant())
}
platformsByVariant[p.Variant()] = p
}
}
p, ok := platformsByVariant[variant]
return p, ok
}
func GetByOsAndArch(os string, arch Arch) (Platform, bool) {
return GetByVariant(createVariantName(os, arch))
}
func createVariantName(os string, arch Arch) string {
if arch == ArchX86_64 {
return os
}
return os + "-" + string(arch)
}
// CountForReleaseJSON returns the number of platforms that we expect to put into the release
// JSON. This is all platforms _except_ those where the `SkipForJSONFeed` field is true.
func CountForReleaseJSON() int {
count := 0
for _, p := range platforms {
if p.SkipForJSONFeed {
continue
}
count++
}
return count
}
func (p Platform) DebianArch() string {
if p.Pkg != PkgDeb {
panic("called DebianArch on non-debian platform")
}
switch p.Arch {
case ArchX86_64:
return "amd64"
case ArchPpc64le:
return "ppc64el"
// other archs are the same name on Debian.
default:
return p.Arch.String()
}
}
func (p Platform) RPMArch() string {
if p.Pkg != PkgRPM {
panic("called RPMArch on non-rpm platform")
}
return p.Arch.String()
}
func (p Platform) ArtifactExtensions() []string {
switch p.OS {
case OSLinux:
return []string{"tgz", "tgz.sig", p.Pkg.String(), p.Pkg.String() + ".sig"}
case OSMac:
return []string{"zip"}
case OSWindows:
return []string{"zip", "zip.sig", "msi"}
}
panic(fmt.Sprintf("unreachable; os=%#q", p.OS))
}
func (p Platform) asGolangString() string {
tmpl := `
{
Name: "%s",
Arch: %s,
OS: %s,%s%s
BuildTags: %s,%s
}`
var pkg string
if p.Pkg != "" {
pkg = indentGolangField("Pkg", p.Pkg.ConstName())
}
var repos string
if len(p.Repos) > 0 {
var consts []string
for _, r := range p.Repos {
consts = append(consts, r.ConstName())
}
sort.Strings(consts)
repos = indentGolangField("Repos", fmt.Sprintf("[]Repo{%s}", strings.Join(consts, ", ")))
}
var buildTags string
if len(p.BuildTags) > 0 {
if len(p.BuildTags) == len(defaultBuildTags) {
buildTags = "defaultBuildTags"
} else {
var tags []string
for _, t := range p.BuildTags {
tags = append(tags, fmt.Sprintf(`"%s"`, t))
}
sort.Strings(tags)
buildTags = fmt.Sprintf("[]string{%s}", strings.Join(tags, ", "))
}
}
var binaryExt string
if p.BinaryExt != "" {
binaryExt = indentGolangField("BinaryExt", fmt.Sprintf(`"%s"`, p.BinaryExt))
}
return fmt.Sprintf(
tmpl,
p.Name,
p.Arch.ConstName(),
p.OS.ConstName(),
pkg,
repos,
buildTags,
binaryExt,
)
}
var canonicalTarget = map[string]string{
"rhel80": "rhel8",
}
func (p Platform) TargetMatches(target string) bool {
baseTarget := cmp.Or(p.ServerPlatform, p.Name)
for _, ref := range []*string{&target, &baseTarget} {
if canonical, has := canonicalTarget[*ref]; has {
*ref = canonical
}
}
return target == baseTarget
}
func indentGolangField(name, value string) string {
return fmt.Sprintf("\n %s: %s,", name, value)
}
func (o OS) ConstName() string {
switch o {
case OSWindows:
return "OSWindows"
case OSLinux:
return "OSLinux"
case OSMac:
return "OSMac"
}
panic(fmt.Sprintf("unreachable; os=%#q", o))
}
func (o OS) String() string {
return string(o)
}
func (p Pkg) ConstName() string {
switch p {
case PkgDeb:
return "PkgDeb"
case PkgRPM:
return "PkgRPM"
}
panic(fmt.Sprintf("unreachable; pkg=%#q", p))
}
func (p Pkg) String() string {
return string(p)
}
func (r Repo) ConstName() string {
switch r {
case RepoOrg:
return "RepoOrg"
case RepoEnterprise:
return "RepoEnterprise"
}
panic(fmt.Sprintf("unreachable; repo=%#q", r))
}
func (r Repo) String() string {
return string(r)
}
func (a Arch) ConstName() string {
switch a {
case ArchArm64:
return "ArchArm64"
case ArchAarch64:
return "ArchAarch64"
case ArchS390x:
return "ArchS390x"
case ArchPpc64le:
return "ArchPpc64le"
case ArchX86_64:
return "ArchX86_64"
}
panic(fmt.Sprintf("unreachable; arch=%#q", a))
}
func (a Arch) String() string {
return string(a)
}
var platformsByVariant map[string]Platform
var defaultBuildTags = []string{"gssapi", "failpoints"}
// Please keep this list sorted by Name and then Arch. This makes it easier to determine
// whether a given platform exists in the list.
var platforms = []Platform{
{
Name: "amazon",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "amazon2",
Arch: ArchAarch64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "amazon2",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "amazon2023",
Arch: ArchAarch64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "amazon2023",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "debian10",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "debian11",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "debian12",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
ServerVariantNames: mapset.NewSet("enterprise-debian12-64"),
},
{
Name: "debian92",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "macos",
Arch: ArchArm64,
OS: OSMac,
BuildTags: defaultBuildTags,
ServerVariantNames: mapset.NewSet("enterprise-macos-arm64"),
},
{
Name: "macos",
Arch: ArchX86_64,
OS: OSMac,
BuildTags: defaultBuildTags,
ServerVariantNames: mapset.NewSet("enterprise-macos"),
},
{
Name: "rhel70",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "rhel71",
Arch: ArchPpc64le,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "rhel72",
Arch: ArchS390x,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "rhel81",
Arch: ArchPpc64le,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel83",
Arch: ArchS390x,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel88",
Arch: ArchAarch64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel88",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
// Using server rhel 80 builds because "enterprise-rhel-80-64-bit" is not available for all server versions.
// NB: Older builds are “rhel-80”, while newer ones are just “rhel-8”.
ServerVariantNames: mapset.NewSet(
"enterprise-rhel-80-64-bit",
"enterprise-rhel-8-64-bit",
),
ServerPlatform: "rhel80",
},
{
Name: "rhel9",
Arch: ArchPpc64le,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel9",
Arch: ArchS390x,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel93",
Arch: ArchAarch64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "rhel93",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoOrg, RepoEnterprise},
BuildTags: defaultBuildTags,
},
{
Name: "suse12",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "suse15",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgRPM,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "ubuntu1604",
Arch: ArchArm64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "ubuntu1604",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "ubuntu1804",
Arch: ArchArm64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "ubuntu1804",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MaxLinuxServerVersion: &version.Version{Major: 7, Minor: 0, Patch: 0},
},
{
Name: "ubuntu2004",
Arch: ArchArm64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "ubuntu2004",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "ubuntu2204",
Arch: ArchArm64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "ubuntu2204",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
},
{
Name: "ubuntu2404",
Arch: ArchArm64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MinLinuxServerVersion: &version.Version{Major: 8, Minor: 0, Patch: 0},
},
{
Name: "ubuntu2404",
Arch: ArchX86_64,
OS: OSLinux,
Pkg: PkgDeb,
Repos: []Repo{RepoEnterprise, RepoOrg},
BuildTags: defaultBuildTags,
MinLinuxServerVersion: &version.Version{Major: 8, Minor: 0, Patch: 0},
},
{
Name: "windows",
Arch: ArchX86_64,
OS: OSWindows,
BuildTags: defaultBuildTags,
BinaryExt: ".exe",
ServerVariantNames: mapset.NewSet("enterprise-windows"),
},
}
func Platforms() []Platform {
return platforms
}