Fix authentication error from Github

From: http://blog.wyrihaximus.net/2015/09/github-auth-token-on-travis/
This commit is contained in:
Jeremy Benoist 2015-09-26 19:23:20 +02:00
parent dc22b46bf3
commit 609594fa5e

View file

@ -34,10 +34,9 @@ branches:
only:
- v2
install:
- composer self-update
before_script:
- composer self-update
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
# disable xdebug since we don't use code-coverage for now
- if [[ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then phpenv config-rm xdebug.ini; fi
# build coverage only on one build, to speed up results feedbacks