From 00b6f5f21c32c6598dc98adc7563cdb3684bbceb Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 30 May 2018 13:53:00 +1000 Subject: [PATCH] DEV: log less in travis UI becomes super slow if we log everything --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5e637cd0cde..1a7be1be397 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,10 +56,10 @@ before_install: - export PATH=$HOME/.yarn/bin:$PATH install: - - bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails seed-fu; fi" - - bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi" - - bash -c "if [ '$RUN_LINT' == '1' ]; then yarn global add eslint babel-eslint; fi" - - bash -c "if [ '$QUNIT_RUN' == '1' ]; then yarn install --dev; fi" + - bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails seed-fu > /dev/null; fi" + - bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3 > /dev/null; fi" + - bash -c "if [ '$RUN_LINT' == '1' ]; then yarn global add eslint babel-eslint > /dev/null; fi" + - bash -c "if [ '$QUNIT_RUN' == '1' ]; then yarn install --dev > /dev/null; fi" script: - |