Skip to content

Commit 8ca171e

Browse files
committed
script/lib/distro.rb: add RHEL/Rocky 10 platform
Rocky Linux 10.0 was recently released, following the release last month of RHEL (Red Hat Enterprise Linux) 10.0, and because we anticipate making a v3.7.0 release of the Git LFS client in the near future, we added a Dockerfile we can use to build packages for the RHEL/Rocky Linux 10 platform in commit git-lfs/build-dockers@cc16329 of PR git-lfs/build-dockers#71. We can now also add entries for this platform to the list of our supported Linux distribution versions in the DistroMap Ruby class source file, which is utilized by several scripts run by our GitHub Actions release workflow jobs when building and naming the Linux packages we publish on Packagecloud.
1 parent c537a8c commit 8ca171e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

script/lib/distro.rb

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ def self.builtin_map
5454
"sles/15.6", # Current
5555
],
5656
},
57+
"rocky/10" => {
58+
name: "RPM RHEL 10/Rocky Linux 10",
59+
component: "el/10",
60+
image: "rocky_10",
61+
package_type: "rpm",
62+
package_tag: "-1.el10",
63+
equivalent: [
64+
"el/10", # EOL May 2035
65+
],
66+
},
5767
# Debian EOL https://wiki.debian.org/LTS/
5868
# Ubuntu EOL https://wiki.ubuntu.com/Releases
5969
# Mint EOL https://linuxmint.com/download_all.php

0 commit comments

Comments
 (0)