.travis.yml 505 B

1234567891011121314151617181920212223242526272829
  1. language: node_js
  2. sudo: false
  3. npm_args: --ws:native
  4. node_js:
  5. - "iojs-v3"
  6. - "iojs-v2"
  7. - "iojs-v1"
  8. - "0.12"
  9. - "0.11"
  10. - "0.10"
  11. - "0.9"
  12. - "0.8"
  13. addons:
  14. apt:
  15. sources:
  16. - ubuntu-toolchain-r-test
  17. packages:
  18. - gcc-4.9
  19. - g++-4.9
  20. before_install:
  21. - export CC="gcc-4.9" CXX="g++-4.9"
  22. - "if [[ $(node --version) == v0.8.* ]]; then npm install -g npm@2.1.18; fi"
  23. matrix:
  24. fast_finish: true
  25. allow_failures:
  26. - node_js: "0.11"
  27. - node_js: "0.9"
  28. - node_js: "0.8"