.travis.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. language: node_js
  2. node_js:
  3. - "5.3"
  4. - "5.2"
  5. - "5.1"
  6. - "5.0"
  7. - "4.2"
  8. - "4.1"
  9. - "4.0"
  10. - "iojs-v3.3"
  11. - "iojs-v3.2"
  12. - "iojs-v3.1"
  13. - "iojs-v3.0"
  14. - "iojs-v2.5"
  15. - "iojs-v2.4"
  16. - "iojs-v2.3"
  17. - "iojs-v2.2"
  18. - "iojs-v2.1"
  19. - "iojs-v2.0"
  20. - "iojs-v1.8"
  21. - "iojs-v1.7"
  22. - "iojs-v1.6"
  23. - "iojs-v1.5"
  24. - "iojs-v1.4"
  25. - "iojs-v1.3"
  26. - "iojs-v1.2"
  27. - "iojs-v1.1"
  28. - "iojs-v1.0"
  29. - "0.12"
  30. - "0.11"
  31. - "0.10"
  32. - "0.9"
  33. - "0.8"
  34. - "0.6"
  35. - "0.4"
  36. before_install:
  37. - 'if [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi'
  38. - 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then npm install -g npm; fi'
  39. script:
  40. - 'if [ "${TRAVIS_NODE_VERSION}" != "4.2" ]; then npm run tests-only ; else npm test ; fi'
  41. sudo: false
  42. matrix:
  43. fast_finish: true
  44. allow_failures:
  45. - node_js: "5.2"
  46. - node_js: "5.1"
  47. - node_js: "5.0"
  48. - node_js: "4.1"
  49. - node_js: "4.0"
  50. - node_js: "iojs-v3.2"
  51. - node_js: "iojs-v3.1"
  52. - node_js: "iojs-v3.0"
  53. - node_js: "iojs-v2.4"
  54. - node_js: "iojs-v2.3"
  55. - node_js: "iojs-v2.2"
  56. - node_js: "iojs-v2.1"
  57. - node_js: "iojs-v2.0"
  58. - node_js: "iojs-v1.7"
  59. - node_js: "iojs-v1.6"
  60. - node_js: "iojs-v1.5"
  61. - node_js: "iojs-v1.4"
  62. - node_js: "iojs-v1.3"
  63. - node_js: "iojs-v1.2"
  64. - node_js: "iojs-v1.1"
  65. - node_js: "iojs-v1.0"
  66. - node_js: "0.11"
  67. - node_js: "0.9"
  68. - node_js: "0.8"
  69. - node_js: "0.6"
  70. - node_js: "0.4"