-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunners.config.example.json
More file actions
141 lines (141 loc) · 5.14 KB
/
Copy pathrunners.config.example.json
File metadata and controls
141 lines (141 loc) · 5.14 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
{
"version": 1,
"defaults": {
"githubServerUrl": "https://github.com",
"githubApiUrl": "https://api.github.com",
"baseImage": "node:lts-bullseye",
"runnerGroup": "Default",
"runnerWorkdir": "_work",
"runnerWorkHostPath": "/home/runner/actions-runner/_work",
"runnerWorkContainerPath": "/home/runner/actions-runner/_work",
"defaultReplicas": 3,
"ephemeral": true,
"replaceExisting": true,
"disableUpdate": false
},
"runnerPackages": {
"linux-x64-2.335.1": {
"os": "linux",
"arch": "x64",
"dockerPlatform": "linux/amd64",
"version": "2.335.1",
"archive": "actions-runner-linux-x64-2.335.1.tar.gz",
"url": "https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-x64-2.335.1.tar.gz",
"sha256": "4ef2f25285f0ae4477f1fe1e346db76d2f3ebf03824e2ddd1973a2819bf6c8cf"
},
"linux-arm64-2.335.1": {
"os": "linux",
"arch": "arm64",
"dockerPlatform": "linux/arm64",
"version": "2.335.1",
"archive": "actions-runner-linux-arm64-2.335.1.tar.gz",
"url": "https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-arm64-2.335.1.tar.gz",
"sha256": "6d1e85bfd1a506a8b17c1f1b9b57dba458ffed90898799aaa9f599520b0d9207"
},
"macos-arm64-2.335.1": {
"os": "macos",
"arch": "arm64",
"version": "2.335.1",
"archive": "actions-runner-osx-arm64-2.335.1.tar.gz",
"url": "https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-osx-arm64-2.335.1.tar.gz",
"sha256": "e1a9bc7a3661e06fa0b129d15c2064fe65dc81a431001d8958a9db1409b73769"
},
"windows-x64-2.335.1": {
"os": "windows",
"arch": "x64",
"dockerPlatform": "windows/amd64",
"version": "2.335.1",
"archive": "actions-runner-win-x64-2.335.1.zip",
"url": "https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-win-x64-2.335.1.zip",
"sha256": "eb65c95277af42bcf3778a799c41359d224ba2a67b4de26b7cea1729b09c803d"
},
"windows-arm64-2.335.1": {
"os": "windows",
"arch": "arm64",
"dockerPlatform": "windows/arm64",
"version": "2.335.1",
"archive": "actions-runner-win-arm64-2.335.1.zip",
"url": "https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-win-arm64-2.335.1.zip",
"sha256": "6cd1409daad8be4f77deb0c677ceb6153fccbab2e33af4fdc1b3465bd42ec742",
"preRelease": true
}
},
"projects": [
{
"id": "example-api",
"owner": "example-org",
"repo": "example-api",
"pools": [
{
"id": "linux-x64-docker",
"enabled": true,
"runtime": "docker",
"runnerPackage": "linux-x64-2.335.1",
"replicas": 3,
"namePrefix": "example-api-linux-x64",
"image": "github-runner-manager:linux-x64-2.335.1",
"labels": ["self-hosted", "linux", "x64", "docker", "example-api"]
},
{
"id": "linux-arm64-docker",
"enabled": false,
"runtime": "docker",
"runnerPackage": "linux-arm64-2.335.1",
"replicas": 3,
"namePrefix": "example-api-linux-arm64",
"image": "github-runner-manager:linux-arm64-2.335.1",
"labels": ["self-hosted", "linux", "arm64", "docker", "example-api"]
},
{
"id": "macos-arm64-native",
"enabled": false,
"runtime": "native",
"runnerPackage": "macos-arm64-2.335.1",
"replicas": 1,
"namePrefix": "example-api-macos-arm64",
"labels": ["self-hosted", "macos", "arm64", "example-api"]
},
{
"id": "windows-x64-native",
"enabled": false,
"runtime": "native",
"runnerPackage": "windows-x64-2.335.1",
"replicas": 1,
"namePrefix": "example-api-windows-x64",
"labels": ["self-hosted", "windows", "x64", "example-api"]
},
{
"id": "windows-x64-docker",
"enabled": false,
"runtime": "docker",
"runnerPackage": "windows-x64-2.335.1",
"replicas": 1,
"namePrefix": "example-api-windows-x64-docker",
"image": "github-runner-manager:windows-x64-2.335.1",
"dockerfile": "runner/windows/Dockerfile",
"labels": ["self-hosted", "windows", "x64", "docker", "example-api"]
},
{
"id": "windows-arm64-native",
"enabled": false,
"runtime": "native",
"runnerPackage": "windows-arm64-2.335.1",
"replicas": 1,
"namePrefix": "example-api-windows-arm64",
"labels": ["self-hosted", "windows", "arm64", "example-api"]
},
{
"id": "windows-arm64-docker",
"enabled": false,
"runtime": "docker",
"runnerPackage": "windows-arm64-2.335.1",
"replicas": 1,
"namePrefix": "example-api-windows-arm64-docker",
"image": "github-runner-manager:windows-arm64-2.335.1",
"dockerfile": "runner/windows/Dockerfile",
"labels": ["self-hosted", "windows", "arm64", "docker", "example-api"]
}
]
}
]
}