From ba23c5a260abe033908677bf92516f1ce934fc41 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Mon, 22 Feb 2021 15:48:10 +0100 Subject: revert "log stderr of make to a file and use tail to show last 1000 lines" (#1660) This reverts commit 30ee7a32b64c94f1ac0c8e3b5068894b6ea8b556. This workaround masks the return value of `make`, causing runs to appear to fail during install, even though build failed already. Since travis is no longer used for CI, this is unnecessary anyway. --- scripts/ci-run.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/ci-run.sh b/scripts/ci-run.sh index d02f7b52e..b0ebfd894 100755 --- a/scripts/ci-run.sh +++ b/scripts/ci-run.sh @@ -308,10 +308,7 @@ build () { #--- make gstart "[GHDL - build] Make" - set +e - make LIB_CFLAGS="$LIB_CFLAGS" OPT_FLAGS="$OPT_FLAGS" -j`nproc` 2>make_err.log - tail -1000 make_err.log - set -e + make LIB_CFLAGS="$LIB_CFLAGS" OPT_FLAGS="$OPT_FLAGS" -j"$(nproc)" gend gstart "[GHDL - build] Install" -- cgit v1.2.3