You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
1.9 KiB

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