rsyslog/tests/travis/install.sh
Rainer Gerhards 697f7d8378
CI: many kafkatests were not executed b/c kafkacat was renamed
kafkacat has been renamed to kcat, as it looks for trademark issues.
Kafka module tests depend on that utility and are skipped if command
is not available. This was now always the case for newer development
containers.

Name was now adjusted in all tests.
2025-09-04 17:18:42 +02:00

85 lines
3.4 KiB
Bash
Executable File

#!/bin/bash
# this installs some components that we cannot install any other way
source /etc/lsb-release
if [ "${AD_PPA}x" == "x" ] ; then AD_PPA="v8-stable"; fi
sudo add-apt-repository ppa:adiscon/$AD_PPA -y
sudo apt-get install -qq faketime libdbd-mysql
sudo add-apt-repository ppa:qpid/released -y
sudo apt-get update
if [ "$DISTRIB_CODENAME" != "xenial" ]; then
# update autoconf-archive (no good enough packets available)
# this one built by whissi
wget --no-verbose http://build.rsyslog.com/CI/autoconf-archive_20170928-1adiscon1_all.deb
if [ $? -ne 0 ]; then
echo Download autoconf-archive failed!
exit 1
fi
sudo dpkg -i autoconf-archive_20170928-1adiscon1_all.deb
rm autoconf-archive_20170928-1adiscon1_all.deb
sudo apt-get install openjdk-7-jdk
fi
if [ "$DISTRIB_CODENAME" == "xenial" ]; then
sudo apt-get install libgnutls28-dev
fi
sudo apt-get install build-essential automake pkg-config libtool autoconf autotools-dev gdb valgrind libdbi-dev libsnmp-dev libmysqlclient-dev postgresql-client libglib2.0-dev libtokyocabinet-dev zlib1g-dev uuid-dev libgcrypt11-dev bison flex libcurl4-openssl-dev python-docutils wget libkrb5-dev libnet1-dev
if [ "x$GROK" == "xYES" ]; then sudo apt-get install -qq libgrok1 libgrok-dev ; fi
sudo apt-get install -qq --force-yes libestr-dev librelp-dev libfastjson-dev liblogging-stdlog-dev \
liblognorm-dev \
libcurl4-openssl-dev
sudo apt-get install -qq python-docutils
sudo apt-get install -qq libmaxminddb-dev libmongoc-dev libbson-dev
# As travis has no xenial images, we always need to install librdkafka from source
if [ "x$KAFKA" == "xYES" ]; then
sudo apt-get install -qq liblz4-dev
# For kafka testbench, "kcat" package is needed!
git clone https://github.com/edenhill/librdkafka > /dev/null
(unset CFLAGS; cd librdkafka ; ./configure --prefix=/usr --CFLAGS="-g" > /dev/null ; make -j2 > /dev/null ; sudo make install > /dev/null)
rm -rf librdkafka # get rid of source, e.g. for line length check
fi
if [ "x$IMHTTP" == "xYES" ]; then
git clone https://github.com/civetweb/civetweb.git > /dev/null
(unset CFLAGS; cd civetweb; make build ; sudo make install-headers PREFIX=/usr ; sudo make install-slib PREFIX=/usr )
rm -rf civetweb # get rid of source, e.g. for line length check
fi
if [ "x$GCC" == "xNEWEST" ]; then
# currently the best repo we can find...
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update -y -qq
sudo apt-get install gcc-7 -y -qq
export CC=gcc-7
fi
sudo apt-get install -qq libhiredis-dev # somehow we now need this
if [ "x$ESTEST" == "xYES" ]; then sudo apt-get install -qq elasticsearch ; fi
if [ "x$IMDOKER" == "xYES" ]; then
export IMDOCKER_OPT="--enable-imdocker --enable-imdocker-tests";
fi
if [ "$CC" == "clang" ]; then export NO_VALGRIND="--without-valgrind-testbench"; fi
if [ "$CC" == "clang" ]; then sudo apt-get install -qq $CLANG_PKG ; fi
if [ "x$KAFKA" == "xYES" ]; then export ENABLE_KAFKA="--enable-omkafka --enable-imkafka --enable-kafka-tests=no" ; fi
if [ "x$DEBUGLESS" == "xYES" ]; then export ENABLE_DEBUGLESS="--enable-debugless" ; fi
#
# uncomment the following if AND ONLY If you need yet-unreleased packages
# from the v8-devel repo. Be sure to reset this once the new release has
# been crafted!
#sudo add-apt-repository ppa:adiscon/v8-devel -y
#sudo apt-get update
# now come the actual overrides
#sudo apt-get install libfastjson-dev
#
# end package override code