-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatrix.json
130 lines (130 loc) · 3.99 KB
/
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
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
{
"distro_defaults": {
"os_versions": 2,
"packager": "dnf"
},
"distros": {
"rhel": {
"dist": "el",
"dir": "redhat",
"rpmbuilder_name": "centos",
"description": "CentOS/RHEL",
"has_plesk": true,
"docker": "rockylinux",
"packager": "dnf",
"versions_check": false,
"versions": [
7,
8,
9,
10
],
"version_overrides": {
"7": {
"docker": "centos",
"packager": "yum"
},
"10": {
"has_plesk": false
}
}
},
"fedora": {
"dist": "fc",
"dir": "fedora",
"description": "Fedora Linux",
"include_rolling_release": false,
"rpmbuilder_name": "fedora",
"versions": [
41,
40
]
},
"amazonlinux": {
"dist": "amzn",
"description": "Amazon Linux",
"versions_check": false,
"versions": [
2,
2023
],
"version_overrides": {
"2": {
"packager": "yum"
}
},
"rpmbuilder_name": "amazonlinux",
"dir": "amzn"
},
"sles": {
"dist": "sles",
"description": "SUSE Linux Enterprise",
"os_versions": 1,
"docker": "opensuse/leap",
"rpmbuilder_name": "opensuse",
"dir": "sles",
"versions": [
15
]
}
},
"collections": {
"nginx": {
"custom_steps_after_checkout": [
{
"run": {
"name": "Set up RPM macro reflecting the NGINX branch",
"command": "echo \"%nginx_branch ${CIRCLE_BRANCH}\" >> rpmmacros\n"
}
},
{
"run": {
"name": "Set up %plesk macro if passed by a job",
"command": "[ -z ${PLESK+x} ] || echo \"%plesk ${PLESK}\" >> rpmmacros\n# we generate both nginx-module-<foo> and sw-nginx-module-<foo> from a single spec file, so:\n[ -z ${PLESK+x} ] || (echo >> rpmlint.config && echo 'addFilter (\"E: invalid-spec-name\")' >> rpmlint.config)\n[ -z ${MOD+x} ] || echo \"%_nginx_mod ${MOD}\" >> rpmmacros\n[ -z ${MOD+x} ] || (echo >> rpmlint.config && echo 'addFilter (\"E: invalid-spec-name\")' >> rpmlint.config)\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": [
"el*"
],
"only_archs": [
"x86_64"
]
},
"freenginx-stable": {
"description": "FreeNGINX Stable"
},
"freenginx-mainline": {
"description": "FreeNGINX Mainline"
}
}
},
"varnish": {
"branches": {
"varnish60": {
"description": "Varnish 6.0 LTS"
}
}
}
}
}