make CI output simpler

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-01-13 03:22:36 +00:00
parent cf8bbd0c87
commit 7c2763642c

View File

@ -55,6 +55,7 @@ before_script:
- "uname -a" - "uname -a"
- "uname -r" - "uname -r"
- "rm -fr .ext autom4te.cache" - "rm -fr .ext autom4te.cache"
- "echo $TERM"
- "make -f common.mk BASERUBY=ruby MAKEDIRS='mkdir -p' srcdir=. update-config_files" - "make -f common.mk BASERUBY=ruby MAKEDIRS='mkdir -p' srcdir=. update-config_files"
- "autoconf" - "autoconf"
- "mkdir config_1st config_2nd" - "mkdir config_1st config_2nd"
@ -65,11 +66,11 @@ before_script:
- "diff -ru config_1st config_2nd" - "diff -ru config_1st config_2nd"
- "make after-update BASERUBY=ruby" - "make after-update BASERUBY=ruby"
- "make -s $JOBS" - "make -s $JOBS"
- "make update-rubyspec" - "make update-rubyspec MSPECOPT=-fm"
- "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then echo 'exclude :test_deadlock_by_signal_at_forking, \"under investigation\"' >> test/excludes/TestProcess.rb; fi" - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then echo 'exclude :test_deadlock_by_signal_at_forking, \"under investigation\"' >> test/excludes/TestProcess.rb; fi"
script: script:
- "make test" - "make test --color=never"
- "make test-all TESTOPTS='-q -j3 --job-status=normal'" - "make test-all TESTOPTS='-q -j3 --color=never --job-status=normal'"
- "make test-rubyspec" - "make test-rubyspec"
after_failure: after_failure:
- "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then find ~/Library/Logs/DiagnosticReports -type f -name ruby_\\*.crash -ls -execdir cat {} \\; -delete; fi" - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then find ~/Library/Logs/DiagnosticReports -type f -name ruby_\\*.crash -ls -execdir cat {} \\; -delete; fi"