travis ci构建错误

时间:2015-07-16 14:50:38

标签: github travis-ci

我在Travis CI的构建上遇到了麻烦。我在git上得到了这些错误,这阻止了我。我试图重新启动构建和类似的东西,但它没有工作。我的.travis.yml:

language: node_js
node_js:
 - "0.12"
 - "0.10"
branches:
 only:
  - v1.0.0_dev
  - v1.0.0_stable
before_script:
 - npm install -g bower
 - npm install -g gulp
 - npm install -g karma
 - bower install
 - gulp prod

这就是错误代码:

0.53s$ git clone --depth=50 git://github.com/GUMGA/components.git
GUMGA/components
Cloning into 'GUMGA/components'...
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 5 (delta 0), reused 5 (delta 0), pack-reused 0
Receiving objects: 100% (5/5), done.
Checking connectivity... done.
$ cd GUMGA/components
3.08s$ git fetch origin +refs/pull/3/merge:
fatal: Couldn't find remote ref refs/pull/3/merge
The command "eval git fetch origin +refs/pull/3/merge:" failed. 
Retrying, 2 of 3.
fatal: Couldn't find remote ref refs/pull/3/merge
The command "eval git fetch origin +refs/pull/3/merge:" failed. 
Retrying, 3 of 3.
fatal: Couldn't find remote ref refs/pull/3/merge
The command "eval git fetch origin +refs/pull/3/merge:" failed 3 times.
The command "git fetch origin +refs/pull/3/merge:" failed and exited with   128 during. Your build has been stopped.

1 个答案:

答案 0 :(得分:2)

您之前合并了拉取请求(此处为:#3):

fatal: Couldn't find remote ref refs/pull/3/merge

尝试再次打开PR或创建新提交!