1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

.travis.yml: debug problematic test case on osx

osx build is stucking somewhere. We want to debug that.
https://travis-ci.org/ruby/ruby/jobs/444059226

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-10-21 00:18:32 +00:00
parent ec91ea5c16
commit 90369a8325

View file

@ -67,7 +67,9 @@ matrix:
compiler: clang
env:
- "CONFIG_FLAG='--with-opt-dir=/usr/local/opt/openssl@1.1:/usr/local/opt/zlib'"
- "JOBS=\"-j`sysctl -n hw.activecpu`\""
# debugging which test is causing hang
- "JOBS="
- "TEST_ALL_TESTOPTS=\"-v --color=never --job-status=normal\""
before_install:
# Bare "brew update" nukes everything.
# These steps are very carefully chosen to avoid breaking things.
@ -197,7 +199,8 @@ before_script:
script:
- "$SETARCH make -s test TESTOPTS=--color=never"
- "$SETARCH make -s $JOBS test-all -o exts TESTOPTS='-q --color=never --job-status=normal'"
- "export TEST_ALL_TESTOPTS=\"${TEST_ALL_TESTOPTS:- -q --color=never --job-status=normal}\""
- "$SETARCH make -s $JOBS test-all -o exts TESTOPTS=\"$TEST_ALL_TESTOPTS\""
- "$SETARCH make -s $JOBS test-spec MSPECOPT=-j"
# Branch matrix. Not all branches are Travis-ready so we limit branches here.