2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3957] Update Hammer with support for new systems

... And a small change to make it work on Rocky 10.
This commit is contained in:
Andrei Pavel 2025-06-16 11:41:16 +03:00
parent b14efa8b6c
commit fbb9397ee5
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -65,8 +65,9 @@ SYSTEMS = {
'37': False, '37': False,
'38': False, '38': False,
'39': False, '39': False,
'40': True, '40': False,
'41': True, '41': True,
'42': True,
}, },
'centos': { 'centos': {
'7': False, '7': False,
@ -76,9 +77,11 @@ SYSTEMS = {
'rhel': { 'rhel': {
'8': True, '8': True,
'9': True, '9': True,
'10': True,
}, },
'rocky': { 'rocky': {
'9': True, '9': True,
'10': True,
}, },
'ubuntu': { 'ubuntu': {
'16.04': False, '16.04': False,
@ -116,10 +119,11 @@ SYSTEMS = {
'3.15': False, '3.15': False,
'3.16': False, '3.16': False,
'3.17': False, '3.17': False,
'3.18': True, '3.18': False,
'3.19': True, '3.19': True,
'3.20': True, '3.20': True,
'3.21': True, '3.21': True,
'3.22': True,
}, },
'arch': {}, 'arch': {},
} }
@ -1943,6 +1947,7 @@ def install_packages_local(system, revision, features, check_times, ignore_error
deferred_functions.append(_install_gtest_sources) deferred_functions.append(_install_gtest_sources)
execute('sudo dnf config-manager --set-enabled crb') execute('sudo dnf config-manager --set-enabled crb')
execute('sudo dnf config-manager --set-enabled devel')
install_pkgs(packages, env=env, timeout=120, check_times=check_times) install_pkgs(packages, env=env, timeout=120, check_times=check_times)
# prepare ubuntu # prepare ubuntu