From 4a9b9b7756cb75ac63a043c393fedef1f655545a Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Wed, 13 Nov 2019 09:57:15 +0100 Subject: [PATCH] Travis-CI: Simplify, syslogd now continues if /proc/kmsg is missing Signed-off-by: Joachim Nilsson --- .travis.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index a59e071..69d1fb5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,21 +29,13 @@ addons: # Build test programs as regular user, or clang build may fail script: - - echo "PASS 1/2 ====================================================================" - ./autogen.sh - - ./configure --prefix=/tmp/sysklogd --disable-silent-rules --with-klogd + - ./configure --prefix=/tmp/sysklogd --disable-silent-rules - make clean - make all - make -C test programs - - sudo make check || (which clang; cat test/test-suite.log; false) - - (cat test/test-suite.log; cat test/start.log; cat test/api.log) + - sudo make check || (which clang; cat test/test-suite.log; cat test/start.log; cat test/api.log; false) - make install-strip - mkdir -p /tmp/example; cp -a example/example.* /tmp/example/ - (cd /tmp/example; PKG_CONFIG_LIBDIR=/tmp/sysklogd/lib/pkgconfig make -f example.mk) - tree /tmp/sysklogd - - echo "PASS 2/2 ====================================================================" - - make distclean - - ./configure --prefix=/tmp/syslogd --disable-silent-rules - - make all - - make install-strip - - tree /tmp/syslogd