2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00

[#3393] ignore error in libyang tests

... and add bison and flex to ubuntu for completion
This commit is contained in:
Andrei Pavel 2024-05-17 08:47:55 +03:00
parent 7730a1d60d
commit c85bdf4df2
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -1133,7 +1133,7 @@ def _install_libyang_from_sources(ignore_errors = False):
execute('git clone https://github.com/CESNET/libyang.git ~/.hammer-tmp/libyang')
execute(f'git checkout {version}', cwd='~/.hammer-tmp/libyang')
execute('mkdir ~/.hammer-tmp/libyang/build')
execute('cmake ..', cwd='~/.hammer-tmp/libyang/build')
execute('cmake -DBUILD_TESTING=OFF -DCMAKE_C_FLAGS="-Wno-incompatible-pointer-types" ..', cwd='~/.hammer-tmp/libyang/build')
execute('make -j $(nproc || gnproc || echo 1)', cwd='~/.hammer-tmp/libyang/build')
execute('sudo make install', cwd='~/.hammer-tmp/libyang/build')
system, revision = get_system_revision()
@ -1169,7 +1169,7 @@ def _install_sysrepo_from_sources(ignore_errors = False):
execute('git clone https://github.com/sysrepo/sysrepo.git ~/.hammer-tmp/sysrepo')
execute(f'git checkout {version}', cwd='~/.hammer-tmp/sysrepo')
execute('mkdir ~/.hammer-tmp/sysrepo/build')
execute('cmake -DREPO_PATH=/etc/sysrepo ..', cwd='~/.hammer-tmp/sysrepo/build')
execute('cmake -DBUILD_TESTING=OFF -DREPO_PATH=/etc/sysrepo ..', cwd='~/.hammer-tmp/sysrepo/build')
execute('make -j $(nproc || gnproc || echo 1)', cwd='~/.hammer-tmp/sysrepo/build')
execute('sudo make install', cwd='~/.hammer-tmp/sysrepo/build')
system, revision = get_system_revision()
@ -1847,7 +1847,7 @@ def install_packages_local(system, revision, features, check_times, ignore_error
_apt_update(system, revision, env=env, check_times=check_times, attempts=3, sleep_time_after_attempt=10)
packages = ['gcc', 'g++', 'make', 'autoconf', 'automake', 'libtool', 'libssl-dev', 'liblog4cplus-dev',
'libboost-system-dev', 'gnupg', 'libpcap-dev']
'libboost-system-dev', 'gnupg', 'libpcap-dev', 'bison', 'flex']
if 'docs' in features:
packages.extend(['python3-sphinx', 'python3-sphinx-rtd-theme',