From 0307e1511071b357622bfdc2342f735010b03312 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Tue, 8 Jul 2014 23:11:18 +0200 Subject: [PATCH] don't abort make on failure in travis --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2d83a07b15..524f64104b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,16 +32,16 @@ before_script: script: - ./bootstrap - ./configure --with-modules='bind gmysql gpgsql gsqlite3 mydns tinydns remote random opendbx ldap lmdb' --enable-unit-tests --enable-remotebackend-http --enable-tools --enable-remotebackend-zeromq --enable-experimental-pkcs11 - - make dist - - make -j 4 - - DESTDIR=/tmp/pdns-install-dir make install + - make -k dist + - make -k -j 4 + - DESTDIR=/tmp/pdns-install-dir make -k install - find /tmp/pdns-install-dir -ls - travis_retry timeout 240s make -j 4 check # Workaround for remotebackend failures on travis-ci - - make -C pdns $(grep '(EXEEXT):' pdns/Makefile | cut -f1 -d\$) + - make -k -C pdns $(grep '(EXEEXT):' pdns/Makefile | cut -f1 -d\$) - cd pdns - - make -j 4 pdns_recursor + - make -k -j 4 pdns_recursor - ./dist-recursor - - make -C docs html/index.html manpages + - make -k -C docs html/index.html manpages - cd ../regression-tests.recursor - cp vars.sample vars - ./config.sh -- 2.47.2