2016-12-28 57 views
0

我正在尝试安装我在Gitlab上托管的项目的依赖项,并且我的Runner从未完成安装。它似乎试图获得依赖关系,但总是超时。这里是我的.gitlab-ci.yml文件:Npm安装在Gitlab持续集成中不成功

image: node:4.6.0 

test_job: 
    script: 
    - hostname 
    - npm config list 
    - npm install 
    - echo "After install" 
only: 
- master 

输出看起来是这样的:

npm info attempt registry request try #3 at 3:06:54 PM 
npm http request GET https://registry.npmjs.org/babel-register 
npm info attempt registry request try #3 at 3:06:54 PM 
npm http request GET https://registry.npmjs.org/babel-preset-stage-2 
npm info retry will retry, error on last attempt: Error: connect ETIMEDOUT 151.101.12.162:443 
npm info retry will retry, error on last attempt: Error: connect ETIMEDOUT 151.101.12.162:443 

最后15分钟试图检索软件包后:

npm ERR! Linux 4.4.19-rancher 
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" 
npm ERR! node v4.6.0 
npm ERR! npm v2.15.9 
npm ERR! code ETIMEDOUT 
npm ERR! errno ETIMEDOUT 
npm ERR! syscall connect 

npm ERR! network connect ETIMEDOUT 151.101.12.162:443 
npm ERR! network This is most likely not a problem with npm itself 
npm ERR! network and is related to network connectivity. 
npm ERR! network In most cases you are behind a proxy or have bad network settings. 
npm ERR! network 
npm ERR! network If you are behind a proxy, please make sure that the 
npm ERR! network 'proxy' config is set properly. See: 'npm help config' 

我不认为这是一个代理问题,因为这个Runner在由Gitlab托管的Docker容器中运行,但除此之外,我不知道问题是什么。为什么npm install会这样失败?

+0

可能是npmjs.org发生故障。我有多个NPM项目,都运行良好。你以后再尝试吗? – mohamnag

+0

只是再试一次,我仍然收到超时错误。 – rafafan2010

回答

0

我的公司有一个特定的镜像,它希望我们用于npm包。当我确定时,一切正常。