mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
b51b9d50e6
commit
1c5fd2bff0
1 changed files with 14 additions and 1 deletions
15
.travis.yml
15
.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}" ] ||
|
||||
|
|
Loading…
Reference in a new issue