From f4ed1e97f7a92eb107fea357b52cfbac8f35b4ba Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Mon, 23 Nov 2020 12:08:31 -0800 Subject: [PATCH] minor update --- .travis.yml | 2 +- ci/blackbox.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ab49a900..98b7d6ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ install: - export PATH=$VERILATOR_ROOT/bin:$PATH script: - - travis_wait 45 make + - travis_wait 45 make -s - travis_wait 45 ci/test_runtime.sh - travis_wait 45 ci/test_driver.sh - travis_wait 45 ci/test_riscv_isa.sh diff --git a/ci/blackbox.sh b/ci/blackbox.sh index 28d010d7..90109354 100755 --- a/ci/blackbox.sh +++ b/ci/blackbox.sh @@ -122,9 +122,9 @@ if [ $DEBUG -eq 1 ] then if [ $SCOPE -eq 1 ] then - DEBUG=1 SCOPE=1 CONFIGS="$CONFIGS" make -C $DRIVER_PATH $DRIVER_EXTRA > build.log 2>&1 + DEBUG=1 SCOPE=1 CONFIGS="$CONFIGS" make -s -C $DRIVER_PATH $DRIVER_EXTRA else - DEBUG=1 CONFIGS="$CONFIGS" make -C $DRIVER_PATH $DRIVER_EXTRA > build.log 2>&1 + DEBUG=1 CONFIGS="$CONFIGS" make -s -C $DRIVER_PATH $DRIVER_EXTRA fi if [ $HAS_ARGS -eq 1 ] @@ -136,9 +136,9 @@ then else if [ $SCOPE -eq 1 ] then - SCOPE=1 CONFIGS="$CONFIGS" make -C $DRIVER_PATH $DRIVER_EXTRA > build.log 2>&1 + SCOPE=1 CONFIGS="$CONFIGS" make -s -C $DRIVER_PATH $DRIVER_EXTRA else - CONFIGS="$CONFIGS" make -C $DRIVER_PATH $DRIVER_EXTRA > build.log 2>&1 + CONFIGS="$CONFIGS" make -s -C $DRIVER_PATH $DRIVER_EXTRA fi if [ $HAS_ARGS -eq 1 ]