.travis.yml 1.6 KB

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