summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-27 13:15:02 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-27 13:15:02 +0000
commit1c5fd2bff0e232aadf4b9486d086ccb6af87ceb6 (patch)
treec0decd304a89efd838d7e55d45e3f3054a7ecff0 /.travis.yml
parentb51b9d50e64170650db71ece4a6c08b3c9ae897a (diff)
Add debug print for random CI failure on osx Travis
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3bf1da2136..7b61be21f6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -357,7 +357,20 @@ before_script:
- 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}" ] ||