Skip to content
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions posit-bakery/posit_bakery/config/image/build_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def packageVersionSeparator(self) -> str:
"red hat": "rhel",
"rh": "rhel",
"el": "rhel",
"ubi": "rhel",
"almalinux": "alma",
"alma linux": "alma",
"rockylinux": "rocky",
Expand Down
2 changes: 2 additions & 0 deletions posit-bakery/test/config/image/test_version_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ def test_equality(self):
("RHEL", SUPPORTED_OS["rhel"]["10"]),
("RH 9", SUPPORTED_OS["rhel"]["9"]),
("EL8", SUPPORTED_OS["rhel"]["8"]),
("UBI 10", SUPPORTED_OS["rhel"]["10"]),
("UBI", SUPPORTED_OS["rhel"]["10"]),
("Alma 9", SUPPORTED_OS["alma"]["9"]),
("AlmaLinux 8", SUPPORTED_OS["alma"]["8"]),
("Alma Linux", SUPPORTED_OS["alma"]["10"]),
Expand Down
Loading