我正在Travis CI中为我的构建运行以下命令:
before_install:
- curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
script:
- sudo composer -nqq update
我手动安装composer,因为我想将sudo
与它一起使用,因为它只为用户安装。
我的错误是:
Updating dependencies (including require-dev)
- Installing jakub-onderka/php-console-color (0.1)
Downloading: Connecting... Failed to download jakub-onderka/php-console-color from dist: The "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1" file could not be downloaded (HTTP/1.1 403 Forbidden)
Now trying to download from source
- Installing symfony/yaml (v2.7.4)
Downloading: Connecting... Failed to download symfony/yaml from dist: The "https://api.github.com/repos/symfony/Yaml/zipball/2dc7b06c065df96cc686c66da2705e5e18aef661" file could not be downloaded (HTTP/1.1 403 Forbidden)
Now trying to download from source
我试过这些链接,效果很好。
这是否意味着Travis出于某种原因阻止了GitHub API?如果没有,我该如何修复?
所谓修复,我的意思是要么知道发生了什么,要么抑制这些错误消息(例如,在composer
中使用一些特殊参数,或者更改JSON文件以强制从源下载(。
我的composer.json
文件是:
{
"config": {
"vendor-dir": "/var/lib/vendor",
"bin-dir": "/usr/local/bin"
},
"require": {
"drush/drush": "dev-master"
}
}
作为参考,完整的.travis.yml
看起来像:
before_install:
- env
- curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
- sudo apt-get -qy update
install:
- sudo apt-get install vagrant
script:
- set -e # This makes build to fail on first error.
- sudo composer -nqq update
- make
- make vm
after_failure:
- sudo apt-get -qy install tree && - tree -d -L 6 # Print directory structure in the form of a tree.
- env
sudo: true
language: php
python:
- "5.5"
错误的最可能原因是github的下载量有限。您需要做的是在您的github帐户中创建一个令牌,并使用将其全局添加到您的作曲家中
composer config -g github-oauth.github.com <your-token>
来源:https://getcomposer.org/doc/articles/troubleshooting.md#api-速率限制和oauth令牌
我的建议是:
删除:
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
sudo composer -nqq update
第一行:不需要,因为Composer是预安装的,当您使用language: php
时。
第二行:最好执行composer install
,因为update
使用来自composer.lock
的数据(如果您的回购包含数据(。这里不需要须藤。
(关于在Travis CI上使用sudo
的旁注:sudo仅在基于非容器的基础设施中可用。我不知道你是否真的需要这个,但也许你可以通过在travis.yml
中设置sudo: false
来切换到更快的基于容器的基础架构,请参阅http://docs.travis-ci.com/user/workers/container-based-infrastructure/。只是一个提示。(
添加到travis.yml
before_install:
- composer self-update
- composer install --no-interaction --optimize-autoloader
第一行:更新这个Travis实例的(可能(过时的作曲家。
第二行:使用Composer安装composer.json
中描述的依赖项。
在下载"Dist"或下载"Source"之间切换的附加参数为--prefer-dist
和--prefer-source
。
所以要么是
- composer install --prefer-dist --no-interaction --optimize-autoloader
或
- composer install --prefer-source --no-interaction --optimize-autoloader
这是否意味着Travis出于某种原因阻止了GitHub API?
如果这不是一个暂时的问题,那么您的Composer似乎正在运行Github API速率限制。GitHub API只允许未经身份验证的用户进行少量请求。您可以通过Travis在Github进行身份验证来提高API限制。
请参阅常见问题解答:https://getcomposer.org/doc/articles/troubleshooting.md#api-速率限制和oauth令牌
请先用prefer-source
试试。