From 609594fa5e5b9938dd4263bb7fcd659139374f37 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 26 Sep 2015 19:23:20 +0200 Subject: [PATCH] Fix authentication error from Github From: http://blog.wyrihaximus.net/2015/09/github-auth-token-on-travis/ --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2747e7d..8c9047df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 -- 2.41.0