summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 00:18:32 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 00:18:32 +0000
commit90369a83259ee80ec91bfb11df4c148d7f1be9f1 (patch)
tree73a79044a2ae9eb988e4b910363beb9263c39bbb /.travis.yml
parentec91ea5c16f2c3d0b94e27cf16a581e46693513f (diff)
.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
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 5d97cca930..ab0e0ebb5a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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.