@@ -8,97 +8,113 @@ const rhel70AndAboveAndRpmBased = ['rhel70', 'rhel71', ...rhel72AndAbove, 'amazo
88const ubuntu1804AndAboveAndDebBased = [ 'ubuntu1804' , 'ubuntu1804' , 'ubuntu2004' , 'ubuntu2204' , 'debian92' , 'debian10' , 'debian11' , 'debian12' ]
99const allLinux = [ ...rhel70AndAboveAndRpmBased , ...ubuntu1804AndAboveAndDebBased ]
1010
11+ const publicDescriptions = {
12+ darwin_x64 : 'MacOS x64 (10.14+)' ,
13+ darwin_arm64 : 'MacOS M1 (11.0+)' ,
14+ linux_x64 : 'Linux x64' ,
15+ linux_arm64 : 'Linux arm64' ,
16+ debian_x64 : 'Debian (10+) / Ubuntu (18.04+) x64' ,
17+ debian_arm64 : 'Debian (10+) / Ubuntu (18.04+) arm64' ,
18+ rhel_x64 : 'RHEL / CentOS (7+) x64' ,
19+ rhel_arm64 : 'RHEL / CentOS (7+) arm64' ,
20+ linux_ppc64le : 'Linux ppc64le' ,
21+ rhel_ppc64le : 'RHEL / CentOS (7+) ppc64le' ,
22+ linux_s390x : 'Linux ppc64le' ,
23+ rhel_s390x : 'RHEL / CentOS (7+) ppc64le' ,
24+ win32_x64 : 'Windows x64 (8.1+)'
25+ } ;
26+
1127exports . RELEASE_PACKAGE_MATRIX = [
1228 {
1329 executableOsId : 'darwin-x64' ,
1430 compileBuildVariant : 'darwin' ,
1531 packages : [
16- { name : 'darwin-x64' , description : 'MacOS 64-bit (10.14+) ', packageOn : 'darwin' , smokeTestKind : 'macos' , serverLikeTargetList : [ 'macos' ] }
32+ { name : 'darwin-x64' , description : publicDescriptions . darwin_x64 , packageType : 'zip ', packageOn : 'darwin' , smokeTestKind : 'macos' , serverLikeTargetList : [ 'macos' ] }
1733 ]
1834 } ,
1935 {
2036 executableOsId : 'darwin-arm64' ,
2137 compileBuildVariant : 'darwin_arm64' ,
2238 packages : [
23- { name : 'darwin-arm64' , description : 'MacOS M1 (11.0+) ', packageOn : 'darwin' , smokeTestKind : 'macos' , serverLikeTargetList : [ 'macos' ] }
39+ { name : 'darwin-arm64' , description : publicDescriptions . darwin_arm64 , packageType : 'zip ', packageOn : 'darwin' , smokeTestKind : 'macos' , serverLikeTargetList : [ 'macos' ] }
2440 ]
2541 } ,
2642 {
2743 executableOsId : 'linux-x64' ,
2844 compileBuildVariant : 'linux_x64_build' ,
2945 packages : [
30- { name : 'linux-x64' , description : 'Linux Tarball 64-bit ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-tgz' ] , serverLikeTargetList : [ ...allLinux ] } ,
31- { name : 'deb-x64' , description : 'Debian / Ubuntu 64-bit ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu18.04-deb' , 'ubuntu20.04-deb' , 'ubuntu22.04-deb' , 'ubuntu22.04-nohome-deb' , 'debian9-deb' , 'debian10-deb' , 'debian11-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
32- { name : 'rpm-x64' , description : 'RHEL / CentOS / Fedora / Suse 64-bit ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'centos7-rpm' , 'amazonlinux2-rpm' , 'amazonlinux2023-rpm' , 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'suse12-rpm' , 'suse15-rpm' , 'amazonlinux1-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
46+ { name : 'linux-x64' , description : publicDescriptions . linux_x64 , packageType : 'tgz ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-tgz' ] , serverLikeTargetList : [ ...allLinux ] } ,
47+ { name : 'deb-x64' , description : publicDescriptions . debian_x64 , packageType : 'deb ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu18.04-deb' , 'ubuntu20.04-deb' , 'ubuntu22.04-deb' , 'ubuntu22.04-nohome-deb' , 'debian9-deb' , 'debian10-deb' , 'debian11-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
48+ { name : 'rpm-x64' , description : publicDescriptions . rhel_x64 , packageType : 'rpm ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'centos7-rpm' , 'amazonlinux2-rpm' , 'amazonlinux2023-rpm' , 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'suse12-rpm' , 'suse15-rpm' , 'amazonlinux1-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
3349 ]
3450 } ,
3551 {
3652 executableOsId : 'linux-x64-openssl11' ,
3753 compileBuildVariant : 'linux_x64_build_openssl11' ,
3854 packages : [
39- { name : 'linux-x64-openssl11' , description : 'Linux Tarball 64-bit ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...allLinux ] } ,
40- { name : 'deb-x64-openssl11' , description : 'Debian / Ubuntu 64-bit ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-deb' , 'debian10-deb' , 'debian11-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
41- { name : 'rpm-x64-openssl11' , description : 'RHEL / CentOS 64-bit ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'centos7-epel-rpm' , 'amazonlinux2-rpm' , 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
55+ { name : 'linux-x64-openssl11' , description : publicDescriptions . linux_x64 , packageType : 'tgz with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...allLinux ] } ,
56+ { name : 'deb-x64-openssl11' , description : publicDescriptions . debian_x64 , packageType : 'deb with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-deb' , 'debian10-deb' , 'debian11-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
57+ { name : 'rpm-x64-openssl11' , description : publicDescriptions . rhel_x64 , packageType : 'rpm with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'centos7-epel-rpm' , 'amazonlinux2-rpm' , 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
4258 ]
4359 } ,
4460 {
4561 executableOsId : 'linux-x64-openssl3' ,
4662 compileBuildVariant : 'linux_x64_build_openssl3' ,
4763 packages : [
48- { name : 'linux-x64-openssl3' , description : 'Linux Tarball 64-bit ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...allLinux ] } ,
49- { name : 'deb-x64-openssl3' , description : 'Debian / Ubuntu 64-bit ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu22.04-deb' , 'ubuntu22.04-fips-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
50- { name : 'rpm-x64-openssl3' , description : 'RHEL / CentOS 64-bit ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-epel-rpm' , 'rocky9-rpm' , 'rocky9-fips-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
64+ { name : 'linux-x64-openssl3' , description : publicDescriptions . linux_x64 , packageType : 'tgz with shared OpenSSL 3', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...allLinux ] } ,
65+ { name : 'deb-x64-openssl3' , description : publicDescriptions . debian_x64 , packageType : 'deb with shared OpenSSL 1.1 ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu22.04-deb' , 'ubuntu22.04-fips-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
66+ { name : 'rpm-x64-openssl3' , description : publicDescriptions . rhel_x64 , packageType : 'rpm with shared OpenSSL 1.1 ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-epel-rpm' , 'rocky9-rpm' , 'rocky9-fips-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...rhel70AndAboveAndRpmBased ] }
5167 ]
5268 } ,
5369 {
5470 executableOsId : 'linux-arm64' ,
5571 compileBuildVariant : 'linux_arm64_build' ,
5672 packages : [
57- { name : 'linux-arm64' , description : 'Linux Tarball arm64 ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-tgz' ] , serverLikeTargetList : [ ...al2AndAbove ] } ,
58- { name : 'deb-arm64' , description : 'Debian / Ubuntu arm64 ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu18.04-deb' , 'ubuntu20.04-deb' , 'ubuntu22.04-deb' , 'debian10-deb' , 'debian11-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
59- { name : 'rpm-arm64' , description : 'RHEL / CentOS arm64 ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'amazonlinux2-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
73+ { name : 'linux-arm64' , description : publicDescriptions . linux_arm64 , packageType : 'tgz ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-tgz' ] , serverLikeTargetList : [ ...al2AndAbove ] } ,
74+ { name : 'deb-arm64' , description : publicDescriptions . debian_arm64 , packageType : 'deb ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu18.04-deb' , 'ubuntu20.04-deb' , 'ubuntu22.04-deb' , 'debian10-deb' , 'debian11-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
75+ { name : 'rpm-arm64' , description : publicDescriptions . rhel_arm64 , packageType : 'rpm ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'amazonlinux2-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
6076 ]
6177 } ,
6278 {
6379 executableOsId : 'linux-arm64-openssl11' ,
6480 compileBuildVariant : 'linux_arm64_build_openssl11' ,
6581 packages : [
66- { name : 'linux-arm64-openssl11' , description : 'Linux Tarball arm64 ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...al2AndAbove ] } ,
67- { name : 'deb-arm64-openssl11' , description : 'Debian / Ubuntu arm64 ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-deb' , 'debian10-deb' , 'debian11-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
68- { name : 'rpm-arm64-openssl11' , description : 'Redhat / Centos arm64 ( shared OpenSSL 1.1) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'amazonlinux2-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
82+ { name : 'linux-arm64-openssl11' , description : publicDescriptions . linux_arm64 , packageType : 'tgz with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...al2AndAbove ] } ,
83+ { name : 'deb-arm64-openssl11' , description : publicDescriptions . debian_arm64 , packageType : 'deb with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu20.04-deb' , 'debian10-deb' , 'debian11-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
84+ { name : 'rpm-arm64-openssl11' , description : publicDescriptions . rhel_arm64 , packageType : 'rpm with shared OpenSSL 1.1', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-rpm' , 'rocky9-rpm' , 'fedora34-rpm' , 'amazonlinux2-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
6985 ]
7086 } ,
7187 {
7288 executableOsId : 'linux-arm64-openssl3' ,
7389 compileBuildVariant : 'linux_arm64_build_openssl3' ,
7490 packages : [
75- { name : 'linux-arm64-openssl3' , description : 'Linux Tarball arm64 ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...al2AndAbove ] } ,
76- { name : 'deb-arm64-openssl3' , description : 'Debian / Ubuntu arm64 ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu22.04-deb' , 'ubuntu22.04-fips-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
77- { name : 'rpm-arm64-openssl3' , description : 'RHEL / CentOS arm64 ( shared OpenSSL 3) ', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-epel-rpm' , 'rocky9-rpm' , 'rocky9-fips-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
91+ { name : 'linux-arm64-openssl3' , description : publicDescriptions . linux_arm64 , packageType : 'tgz with shared OpenSSL 3', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...al2AndAbove ] } ,
92+ { name : 'deb-arm64-openssl3' , description : publicDescriptions . debian_arm64 , packageType : 'deb with shared OpenSSL 3', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'ubuntu22.04-deb' , 'ubuntu22.04-fips-deb' , 'debian12-deb' ] , serverLikeTargetList : [ ...ubuntu1804AndAboveAndDebBased ] } ,
93+ { name : 'rpm-arm64-openssl3' , description : publicDescriptions . rhel_arm64 , packageType : 'rpm with shared OpenSSL 3', packageOn : 'linux_package' , smokeTestKind : 'docker' , smokeTestDockerfiles : [ 'rocky8-epel-rpm' , 'rocky9-rpm' , 'rocky9-fips-rpm' , 'amazonlinux2023-rpm' ] , serverLikeTargetList : [ ...al2AndAbove ] }
7894 ]
7995 } ,
8096 {
8197 executableOsId : 'linux-ppc64le' ,
8298 compileBuildVariant : 'linux_ppc64le_build' ,
8399 packages : [
84- { name : 'linux-ppc64le' , description : 'Linux Tarball ppc64le ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...rhel81AndAbove ] } ,
85- { name : 'rpm-ppc64le' , description : 'Redhat / Centos ppc64le ', packageOn : 'linux_package' , smokeTestKind : 'rpmextract' , serverLikeTargetList : [ ...rhel81AndAbove ] }
100+ { name : 'linux-ppc64le' , description : publicDescriptions . linux_ppc64le , packageType : 'tgz ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...rhel81AndAbove ] } ,
101+ { name : 'rpm-ppc64le' , description : publicDescriptions . rhel_ppc64le , packageType : 'rpm ', packageOn : 'linux_package' , smokeTestKind : 'rpmextract' , serverLikeTargetList : [ ...rhel81AndAbove ] }
86102 ]
87103 } ,
88104 {
89105 executableOsId : 'linux-s390x' ,
90106 compileBuildVariant : 'linux_s390x_build' ,
91107 packages : [
92- { name : 'linux-s390x' , description : 'Linux Tarball s390x ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...rhel72AndAbove ] } ,
93- { name : 'rpm-s390x' , description : 'Redhat / Centos s390x ', packageOn : 'linux_package' , smokeTestKind : 'rpmextract' , serverLikeTargetList : [ ...rhel72AndAbove ] }
108+ { name : 'linux-s390x' , description : publicDescriptions . linux_s390x , packageType : 'tgz ', packageOn : 'linux_package' , smokeTestKind : 'none' , serverLikeTargetList : [ ...rhel72AndAbove ] } ,
109+ { name : 'rpm-s390x' , description : publicDescriptions . rhel_s390x , packageType : 'rpm ', packageOn : 'linux_package' , smokeTestKind : 'rpmextract' , serverLikeTargetList : [ ...rhel72AndAbove ] }
94110 ]
95111 } ,
96112 {
97113 executableOsId : 'win32' ,
98114 compileBuildVariant : 'win32_build' ,
99115 packages : [
100- { name : 'win32-x64' , description : 'Windows 64-bit (8.1+) ', packageOn : 'win32' , smokeTestKind : 'ssh' , serverLikeTargetList : [ 'windows' ] } ,
101- { name : 'win32msi-x64' , description : 'Windows 64-bit (8.1+) (MSI) ', packageOn : 'win32' , smokeTestKind : 'ssh' , serverLikeTargetList : [ 'windows' ] }
116+ { name : 'win32-x64' , description : publicDescriptions . win32_x64 , packageType : 'zip ', packageOn : 'win32' , smokeTestKind : 'ssh' , serverLikeTargetList : [ 'windows' ] } ,
117+ { name : 'win32msi-x64' , description : publicDescriptions . win32_x64 , packageType : 'msi ', packageOn : 'win32' , smokeTestKind : 'ssh' , serverLikeTargetList : [ 'windows' ] }
102118 ]
103119 }
104120] ;
0 commit comments