From c51255ec4c2379e5d6a6c2db49ace969221a5b86 Mon Sep 17 00:00:00 2001 From: "Mark A. Grondona" Date: Tue, 17 Oct 2017 14:42:13 -0700 Subject: [PATCH] travis-ci: remove -j2 from distcheck builds The "write errors" (#1145) in travis-ci seemed to have increased with the introduction of '-j2' to make distcheck. Perhaps the amount of data on stdout/err or written to disk is overwhelming the travis builders. Remove -j2 for now in hopes that it will make builds more reliable. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dd177a13b74e..831e17a27ee6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,7 +91,7 @@ script: - git fetch --unshallow --tags - ulimit -c unlimited - export CC="ccache $CC" - - export MAKECMDS="make -j 2 distcheck" + - export MAKECMDS="make distcheck" # Ensure travis builds libev such that libfaketime will work: # (force libev to *not* use syscall interface for clock_gettime()) - export CPPFLAGS="-DEV_USE_CLOCK_SYSCALL=0 -DEV_USE_MONOTONIC=1"