TravisCI在Node BCrypt上遇到node-gyp错误

时间:2016-11-25 10:26:40

标签: node.js travis-ci node-gyp

我正在努力让我的Node.js 7项目在TravisCI上运行。一切都在本地工作,但当travis试图测试项目我得到:

gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/home/travis/.nvm/versions/node/v6.9.1/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:276:23)
gyp ERR! stack     at emitTwo (events.js:106:13)
gyp ERR! stack     at ChildProcess.emit (events.js:191:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
gyp ERR! System Linux 4.8.7-040807-generic
gyp ERR! command "/home/travis/.nvm/versions/node/v6.9.1/bin/node" "/home/travis/.nvm/versions/node/v6.9.1/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/travis/build/actuallymentor/react-node-boilerplate/node_modules/bcrypt
gyp ERR! node -v v6.9.1
gyp ERR! node-gyp -v v3.4.0
gyp ERR! not ok 

npm ERR! bcrypt@0.8.7 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bcrypt@0.8.7 install script 'node-gyp rebuild'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the bcrypt package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild

这导致我的构建甚至在运行测试之前就失败了。

2 个答案:

答案 0 :(得分:4)

这里的问题是bcrypt需要使用c ++库。特拉维斯没有这个安装。为了使它工作,我们需要:

  1. 安装库
  2. 设置一个环境变量,指示我们要使用它
  3. 此外,node-gyp喜欢全局安装,因此我们也可以一次配置它。

    在你的.travis.yml中:

    sudo: required
    before_install:
      - npm install -g node-gyp
    addons:
      apt:
        sources:
        - ubuntu-toolchain-r-test
        packages:
        - g++-5
    

    另外,请务必在travis项目设置中设置此环境变量:

    CXX=g++-5
    

    请注意,任何高于4.8的g ++版本都应该有效。

答案 1 :(得分:0)

这项工作对我来说!!!!

nodejs 4.6.2,travis上的bcryp 1.0.1

env:
  - CXX=g++-4.8
addons:
  apt:
    sources:
    - ubuntu-toolchain-r-test
    packages:
    - g++-4.8