From 90369a83259ee80ec91bfb11df4c148d7f1be9f1 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 21 Oct 2018 00:18:32 +0000 Subject: [PATCH] .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 --- .travis.yml | 7 +++++-- 1 file 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.