adoptium: add rhel10, fedora 42

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-09-13 16:23:40 +08:00
parent 8abc8d3291
commit 5c881aec96
No known key found for this signature in database

View File

@ -118,12 +118,22 @@ if __name__ == "__main__":
sp.run([str(here/"yum-sync.py"),
BASE_URL+'/rpm/rhel/@{os_ver}/@{arch}',
"--download-repodata",
'9',
'9,10',
'Adoptium',
'x86_64,aarch64',
"rhel@{os_ver}-@{arch}",
f"{BASE_PATH}/rpm"
],
check=True)
sp.run([str(here/"yum-sync.py"),
BASE_URL+'/rpm/fedora/@{os_ver}/@{arch}',
"--download-repodata",
'42',
'Adoptium',
'x86_64,aarch64',
"fedora@{os_ver}-@{arch}",
f"{BASE_PATH}/rpm"
],
check=True)
print("YUM finished", flush=True)