2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +00:00

hammer: tuned timeouts to some commands

This commit is contained in:
Michal Nowikowski
2019-01-23 17:27:29 +01:00
parent 4ba2700e2f
commit efab8e6976

View File

@@ -589,7 +589,7 @@ def prepare_deps_local(features, check_times):
packages.extend(['git'])
install_cmd = 'sudo dnf -y install %s'
execute(install_cmd % ' '.join(packages), env=env, check_times=check_times)
execute(install_cmd % ' '.join(packages), env=env, timeout=120, check_times=check_times)
# prepare lib4cplus as epel repos are not available for rhel 8 yet
if revision == '8' and not os.path.exists('/usr/include/log4cplus/logger.h'):
@@ -806,7 +806,7 @@ def build_local(features, tarball_path, check_times, jobs):
if 'shell' in features:
cmd += ' --enable-shell'
execute(cmd, cwd=src_path, env=env, check_times=check_times)
execute(cmd, cwd=src_path, env=env, timeout=120, check_times=check_times)
if jobs == 0:
cpus = multiprocessing.cpu_count() - 1