Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): use deprecated minimum OS versions for DL center MONGOSH-1602 #1690

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions config/release-package-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ const publicDescriptions = {
darwin_arm64: 'MacOS M1 (11.0+)',
linux_x64: 'Linux x64',
linux_arm64: 'Linux arm64',
debian_x64: 'Debian (11+) / Ubuntu (20.04+) x64',
debian_arm64: 'Debian (11+) / Ubuntu (20.04+) arm64',
rhel_x64: 'RHEL / CentOS (8+) x64',
rhel_arm64: 'RHEL / CentOS (8+) arm64',
debian_x64: 'Debian (10+) / Ubuntu (18.04+) x64',
debian_arm64: 'Debian (10+) / Ubuntu (18.04+) arm64',
rhel_x64: 'RHEL / CentOS (7+) x64',
rhel_arm64: 'RHEL / CentOS (7+) arm64',
linux_ppc64le: 'Linux ppc64le',
rhel_ppc64le: 'RHEL / CentOS (8+) ppc64le',
linux_s390x: 'Linux ppc64le',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oof

rhel_s390x: 'RHEL / CentOS (8+) ppc64le',
rhel_ppc64le: 'RHEL / CentOS (7+) ppc64le',
linux_s390x: 'Linux s390x',
rhel_s390x: 'RHEL / CentOS (7+) s390x',
win32_x64: 'Windows x64 (10+)'
};

Expand Down