From 3dd483d13214391e1359894aa508bc8571686895 Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov <y.lobankov@tarantool.org> Date: Thu, 7 Jul 2022 14:18:26 +0300 Subject: [PATCH] ci: add autoconf and automake deps to make targets This patch fixes the following error: [ 35%] Performing configure step for 'bundled-libcurl-project' *** Do not use buildconf. Instead, just use: autoreconf -fi ./buildconf: 8: exec: autoreconf: not found To resolve this issue we need to install the `autoconf` and `automake` packages before building. NO_DOC=ci NO_TEST=ci NO_CHANGELOG=ci --- .travis.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.mk b/.travis.mk index c1e08790a4..652105010c 100644 --- a/.travis.mk +++ b/.travis.mk @@ -87,10 +87,10 @@ deps_tests: deps_ubuntu_ghactions: deps_tests sudo apt-get update ${APT_EXTRA_FLAGS} && \ - sudo apt-get install -y -f libreadline-dev libunwind-dev + sudo apt-get install -y -f libreadline-dev libunwind-dev autoconf automake deps_coverage_ubuntu_ghactions: deps_ubuntu_ghactions - sudo apt-get install -y -f lcov ninja-build + sudo apt-get install -y -f lcov ninja-build autoconf automake sudo gem install coveralls-lcov # Link src/lib/uri/src to local src dircetory to avoid of issue: # /var/lib/gems/2.7.0/gems/coveralls-lcov-1.7.0/lib/coveralls/lcov/converter.rb:64:in @@ -261,7 +261,7 @@ deps_debian_static: deps_tests # while liblzma dynamic library exists. So the build dynamicaly has no # issues, while static build fails. To fix it we need to install # liblzma-dev package with static library only for static build. - sudo apt-get install -y -f liblzma-dev + sudo apt-get install -y -f liblzma-dev autoconf automake test_static_build: deps_debian_static CMAKE_EXTRA_PARAMS=-DBUILD_STATIC=ON make -f .travis.mk test_debian_no_deps @@ -337,7 +337,7 @@ test_oos_build: deps_odroid_arm64: sudo apt update -y && sudo apt -y install git build-essential cmake make zlib1g-dev \ libreadline-dev libncurses5-dev libssl-dev libunwind-dev libicu-dev python3 \ - python3-six python3-pip + python3-six python3-pip autoconf automake pip3 install -r test-run/requirements.txt build_odroid_arm64: @@ -502,7 +502,7 @@ test_run_tarantool_test: tarantool_linux_deps: sudo apt update -y && sudo apt -y install git build-essential cmake \ make ninja-build zlib1g-dev libreadline-dev libncurses5-dev \ - libssl-dev libunwind-dev libicu-dev \ + libssl-dev libunwind-dev libicu-dev autoconf automake \ python3 python3-six python3-pip pip3 install -r test-run/requirements.txt -- GitLab