mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 19:40:41 +01:00
while it is "just" a contributed module, we should make sure it builds at least closes https://github.com/rsyslog/rsyslog/issues/1879
80 lines
4.4 KiB
Bash
Executable File
80 lines
4.4 KiB
Bash
Executable File
# this script runs the travis CI testbench. It's easier and more
|
|
# powerful this way than using .travis.yml (plus recommended by travis support)
|
|
#
|
|
set -v # we want to see the execution steps
|
|
set -e # abort on first failure
|
|
#set -x # debug aid
|
|
|
|
echo "DISTRIB_CODENAME: $DISTRIB_CODENAME"
|
|
echo "CLANG: $CLANG"
|
|
|
|
# first check code style. We do this only when STAT_AN is enabled,
|
|
# so that we do not do it in each and every run. While once is sufficient,
|
|
# STAT_AN for now gives us sufficient runtime reduction.
|
|
if [ "x$STAT_AN" == "xYES" ] ; then CI/check_line_length.sh ; fi
|
|
|
|
|
|
echo "****************************** BEGIN ACTUAL SCRIPT STEP ******************************"
|
|
source tests/travis/install.sh
|
|
source /etc/lsb-release
|
|
|
|
|
|
# we turn off leak sanitizer at this time because it reports some
|
|
# pretty irrelevant problems in startup code. In the longer term,
|
|
# we should clean these up, but we also have a lot of other leak
|
|
# tests, so this is not our priority at the moment (much more
|
|
# important things are on the TODO list).
|
|
export ASAN_OPTIONS=detect_leaks=0
|
|
|
|
if [ "$MERGE" == "YES" ]; then
|
|
# we need to use source as we must exit on inability to merge!
|
|
set +v
|
|
set +e
|
|
source tests/CI/try_merge.sh --merge-only
|
|
set -v
|
|
set -e
|
|
fi
|
|
|
|
if [ "$CC" == "clang" ] && [ "$DISTRIB_CODENAME" == "trusty" ]; then SCAN_BUILD="scan-build-3.6"; else SCAN_BUILD="scan-build"; fi
|
|
if [ "x$BUILD_FROM_TARBALL" == "xYES" ]; then autoreconf -fvi && ./configure && make dist && mv *.tar.gz rsyslog.tar.gz && mkdir unpack && cd unpack && tar xzf ../rsyslog.tar.gz && ls -ld rsyslog* && cd rsyslog* ; fi
|
|
pwd
|
|
autoreconf --force --verbose --install
|
|
if [ "x$GROK" == "xYES" ]; then export GROK="--enable-mmgrok"; fi
|
|
if [ "x$ESTEST" == "xYES" ]; then export ES_TEST_CONFIGURE_OPT="--enable-elasticsearch-tests" ; fi
|
|
# at this point, the environment should be setup for ./configure
|
|
if [ "$CC" == "clang" ] && [ "$DISTRIB_CODENAME" == "trusty" ]; then export CC="clang-3.6"; fi
|
|
$CC -v
|
|
env
|
|
if [ "$DISTRIB_CODENAME" != "precise" ]; then AMQP1="--enable-omamqp1"; fi
|
|
export CONFIG_FLAGS="--prefix=/opt/rsyslog --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --enable-silent-rules --libdir=/usr/lib64 --docdir=/usr/share/doc/rsyslog --disable-generate-man-pages --enable-testbench --enable-imdiag --enable-imfile --enable-impstats --enable-mmrm1stspace --enable-imptcp --enable-mmanon --enable-mmaudit --enable-mmfields --enable-mmjsonparse --enable-mmpstrucdata --enable-mmsequence --enable-mmutf8fix --enable-mail --enable-omprog --enable-omruleset --enable-omstdout --enable-omuxsock --enable-pmaixforwardedfrom --enable-pmciscoios --enable-pmcisconames --enable-pmlastmsg --enable-pmsnare --enable-libgcrypt --enable-mmnormalize --disable-omudpspoof --enable-relp --disable-snmp --disable-mmsnmptrapd --enable-gnutls --enable-mysql --enable-mysql-tests --enable-usertools --enable-gt-ksi --enable-libdbi --enable-pgsql --enable-omhttpfs --enable-elasticsearch --enable-valgrind --enable-ommongodb --enable-omrelp-default-port=13515 --enable-omtcl --enable-mmdblookup --enable-gssapi-krb5 --enable-mmcount $JOURNAL_OPT $HIREDIS_OPT $ENABLE_KAFKA $ENABLE_DEBUGLESS $NO_VALGRIND $GROK $ES_TEST_CONFIGURE_OPT $CONFIGURE_FLAGS $AMQP1"
|
|
./configure $CONFIG_FLAGS
|
|
export USE_AUTO_DEBUG="off" # set to "on" to enable this for travis
|
|
make -j
|
|
|
|
if [ "x$CHECK" == "xYES" ]
|
|
then
|
|
set +e # begin testbench, here we do not want to abort
|
|
make check
|
|
ALL_OK=$?
|
|
if [ -f tests/test-suite.log ]
|
|
then
|
|
cat tests/test-suite.log
|
|
fi
|
|
if [ $ALL_OK -ne 0 ]
|
|
then
|
|
echo "error in make check, error-terminating now"
|
|
exit $ALL_OK
|
|
fi
|
|
set -e # now errors are no longer permited, again
|
|
make distcheck
|
|
fi
|
|
|
|
if [ "x$STAT_AN" == "xYES" ] ; then make clean; CFLAGS="-O2 -std=c99"; ./configure $CONFIG_FLAGS ; fi
|
|
if [ "x$STAT_AN" == "xYES" ] ; then cd compat; $SCAN_BUILD --status-bugs make -j && cd .. ; fi
|
|
# we now build those components that we know to need some more work
|
|
# they will not be included in the later static analyzer run. But by
|
|
# explicitely listing the modules which do not work, we automatically
|
|
# get new modules/files covered.
|
|
if [ "x$STAT_AN" == "xYES" ] ; then cd runtime; make - lmnet_la-net.lo libgcry_la-libgcry.lo ; cd .. ; fi
|
|
if [ "x$STAT_AN" == "xYES" ] ; then $SCAN_BUILD --status-bugs make -j ; fi
|