From c88153a23d0389acfaa5126a4980bec53d5d63f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Tue, 27 Jan 2015 12:07:36 +0100 Subject: [PATCH] be less verbose at Travis to have shorter log - removed "rake check:syntax", not needed anymore the syntax is checked by rubocop as well - use "-s" (silent) make option --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index adf725771..cd6c0f015 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,10 @@ before_install: - wget https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh - sh ./travis_setup.sh -p "rake yast2-core yast2-devtools yast2-testsuite yast2-ruby-bindings yast2 yast2-pkg-bindings" -g "rspec:2.14.1 yast-rake gettext rubocop:0.28.0" script: - - rake check:syntax - rake check:pot - rubocop - - make -f Makefile.cvs - - make - - sudo make install - - make check + - make -s -f Makefile.cvs + - make -s + - sudo make -s install + - make -s check