I just created a Haskell Travis CI project with this .travis.yml
:
language: haskell
ghc:
- 7.8
- 7.10
But Travis interprets the second version as 7.1
: https://travis-ci.org/fhaust/dtw/jobs/57648139
The version is only recognized if I enclose it in quotes (though this results in other errors, since 7.10 is not a version available on Travis CI):
language: haskell
ghc:
- 7.8
- "7.10"
Is this a bug?
Edit 2015-11-22
There is an open issue for GHC 7.10 on travis-ci: https://github.com/travis-ci/travis-ci/issues/3785