-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatrix.json
More file actions
122 lines (122 loc) · 3.43 KB
/
matrix.json
File metadata and controls
122 lines (122 loc) · 3.43 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
{
"distro_defaults": {
"os_versions": 2,
"packager": "apt"
},
"distros": {
"ubuntu": {
"dist": "ubuntu",
"dir": "ubuntu",
"description": "Ubuntu Linux",
"has_plesk": true,
"docker": "ubuntu",
"packager": "apt",
"versions_check": false,
"versions": [
"20.04",
"22.04",
"24.04"
],
"codenames_map": {
"20.04": "focal",
"22.04": "jammy",
"24.04": "noble"
},
"version_overrides": {
"2004": {
"has_plesk": true
},
"2204": {
"has_plesk": true
},
"2404": {
"has_plesk": true
}
}
},
"debian": {
"dist": "debian",
"dir": "debian",
"description": "Debian Linux",
"has_plesk": false,
"docker": "debian",
"packager": "apt",
"versions_check": false,
"versions": [
12,
13
],
"codenames_map": {
"12": "bookworm",
"13": "trixie"
},
"version_overrides": {
"12": {
"has_plesk": false
},
"13": {
"has_plesk": false
}
}
}
},
"collections": {
"nginx": {
"custom_steps_after_checkout": [
{
"run": {
"name": "Set up DEB macro reflecting the NGINX branch",
"command": "echo \"nginx_branch=${CIRCLE_BRANCH}\" >> debmacros\n"
}
},
{
"run": {
"name": "Set up plesk macro if passed by a job",
"command": "[ -z ${PLESK+x} ] || echo \"plesk_version=${PLESK}\" >> debmacros\n"
}
}
],
"branches": {
"stable": {
"description": "Stable NGINX",
"git_branch": "master"
},
"mainline": {
"description": "Mainline NGINX"
},
"angie": {
"description": "Angie"
},
"nginx-mod": {
"description": "NGINX-MOD"
},
"tengine": {
"description": "Tengine"
},
"plesk": {
"description": "Plesk",
"plesk_version": 18,
"only_dists": [
"ubuntu*"
],
"only_archs": [
"amd64"
]
},
"freenginx-stable": {
"description": "FreeNGINX Stable"
},
"freenginx-mainline": {
"description": "FreeNGINX Mainline"
}
}
},
"varnish": {
"branches": {
"varnish60": {
"description": "Varnish 6.0 LTS"
}
}
}
}
}