Does Travis ci allow ghc versions larger than 7.8?

核能气质少年 提交于 2019-12-04 01:25:55

It's not a bug, it's a consequence of using YAML files for config: YAML parses 7.10 as the number 7.1.

The node.js docs on Travis do have all the version numbers in quotes:

language: node_js
node_js:
  - "0.12"
  - "0.11"
  - "0.10"
  - "0.8"
  - "0.6"
  - "iojs"
  - "iojs-v1.0.4" 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!