Skip to content
Snippets Groups Projects
Commit 3dd483d1 authored by Yaroslav Lobankov's avatar Yaroslav Lobankov Committed by Yaroslav Lobankov
Browse files

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
parent 8b5bcd92
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment