-
Notifications
You must be signed in to change notification settings - Fork 9
/
build-matrix.json
77 lines (76 loc) · 2 KB
/
build-matrix.json
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
{
"comment1": "runners hosted by GitHub, always enabled",
"hosted": [
{
"comment": "Alpine container for static Linux binaries",
"os": "ubuntu-latest",
"container": "alpine:3.20",
"os_name": "linux",
"target_arch": "x64",
"exe_ext": ""
},
{
"comment": "Ubuntu 24.04 with hardware acceleration",
"os": "ubuntu-latest",
"container": "ubuntu:24.04",
"os_name": "linux",
"target_arch": "x64",
"exe_ext": "-ubuntu-24.04"
},
{
"comment": "Ubuntu 22.04 with hardware acceleration",
"os": "ubuntu-latest",
"container": "ubuntu:22.04",
"os_name": "linux",
"target_arch": "x64",
"exe_ext": "-ubuntu-22.04"
},
{
"comment": "Explicit macOS version 13 is required for explicit x64 CPU.",
"os": "macos-13",
"os_name": "osx",
"target_arch": "x64",
"exe_ext": ""
},
{
"comment": "Latest macOS version is arm64 CPU.",
"os": "macos-latest",
"os_name": "osx",
"target_arch": "arm64",
"exe_ext": ""
},
{
"os": "windows-latest",
"os_name": "win",
"target_arch": "x64",
"exe_ext": ".exe"
}
],
"comment2": "runners hosted by the owner, enabled by the ENABLE_SELF_HOSTED variable being set on the repo",
"selfHosted": [
{
"comment": "Alpine container for static Linux binaries",
"os": "self-hosted-linux-arm64",
"container": "alpine:3.20",
"os_name": "linux",
"target_arch": "arm64",
"exe_ext": ""
},
{
"comment": "Ubuntu 24.04 with hardware acceleration",
"os": "self-hosted-linux-arm64",
"container": "ubuntu:24.04",
"os_name": "linux",
"target_arch": "arm64",
"exe_ext": "-ubuntu-24.04"
},
{
"comment": "Ubuntu 22.04 with hardware acceleration",
"os": "self-hosted-linux-arm64",
"container": "ubuntu:22.04",
"os_name": "linux",
"target_arch": "arm64",
"exe_ext": "-ubuntu-22.04"
}
]
}