ruby-changes:55140
From: k0kubun <ko1@a...>
Date: Wed, 27 Mar 2019 22:15:07 +0900 (JST)
Subject: [ruby-changes:55140] k0kubun:r67347 (trunk): Add debug print for random CI failure on osx Travis
k0kubun 2019-03-27 22:15:02 +0900 (Wed, 27 Mar 2019) New Revision: 67347 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67347 Log: Add debug print for random CI failure on osx Travis Modified files: trunk/.travis.yml Index: .travis.yml =================================================================== --- .travis.yml (revision 67346) +++ .travis.yml (revision 67347) @@ -357,7 +357,20 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L357 - rm -rf ~/config_2nd - mv ../config_2nd ~ - chmod u-w .. - - $SETARCH make -s $JOBS && make install + - |- + if ! $SETARCH make -s $JOBS; then + if [ "$(uname)" = Darwin ]; then + # Debugging "Permission defined" failure on darwin like https://travis-ci.org/ruby/ruby/jobs/508683759 + set -x + echo $USER + ls -la + ls -la .ext + ls -la .ext/common + ls -la .ext/common/bigdecimal + fi + exit 1 + fi + - make install - ccache --show-stats - |- [ -z "${GEMS_FOR_TEST}" ] || -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/