.travis.yml 387 B

12345678910111213141516171819202122232425
  1. sudo: required
  2. language: node_js
  3. env:
  4. - CXX="g++-4.8"
  5. node_js:
  6. - "5"
  7. - "5.1"
  8. - "4"
  9. - "4.2"
  10. - "4.1"
  11. - "4.0"
  12. addons:
  13. apt:
  14. sources:
  15. - ubuntu-toolchain-r-test
  16. packages:
  17. - g++-4.8
  18. - gcc-4.8
  19. before_install:
  20. # npm shipped with Node.js 0.8 doesn't support carret so let's update it
  21. - if [ "$TRAVIS_NODE_VERSION" == "0.8" ]; then npm install -g npm; fi