
I'd like to build/test the Haddock documentation for the OpenGL packages on Travis CI a bit more, so I've tweaked the configuration a bit by building the Haddock documentation for the dependencies first. One problem remains: There seems to be no installed Haddock documentation for the Haskell platform itself on Travis CI, so we get tons of warnings, e.g. here: https://travis-ci.org/haskell-opengl/GLUT Does anybody have a clue how to fix this (probably via some apt-get magic in the before-install section)? Cheers, S.

The Travis CI build environment document states that they use "Haskell
Platform 2012.2.0.0". Assuming that this is provided by the
haskell-platform package from ubuntu the documentation can be
installed by invoking
sudo apt-get install haskell-platform-doc
Lars
On Wed, Aug 21, 2013 at 6:40 PM, Sven Panne
I'd like to build/test the Haddock documentation for the OpenGL packages on Travis CI a bit more, so I've tweaked the configuration a bit by building the Haddock documentation for the dependencies first. One problem remains: There seems to be no installed Haddock documentation for the Haskell platform itself on Travis CI, so we get tons of warnings, e.g. here:
https://travis-ci.org/haskell-opengl/GLUT
Does anybody have a clue how to fix this (probably via some apt-get magic in the before-install section)?
Cheers, S.
_______________________________________________ HOpenGL mailing list HOpenGL@haskell.org http://www.haskell.org/mailman/listinfo/hopengl

2013/8/25 L Corbijn
The Travis CI build environment document states that they use "Haskell Platform 2012.2.0.0". Assuming that this is provided by the haskell-platform package from ubuntu the documentation can be installed by invoking
sudo apt-get install haskell-platform-doc
Cool tip! Adding - sudo apt-get update -qq - sudo apt-get install -qq haskell-platform-doc at the start of the 'before_install:' sections of the Travis CI configuration files really seems to do the trick, I opened a ticket for this issue (https://github.com/travis-ci/travis-ci/issues/1351) already, but I'll change this into a proposal to have haskell-platform-doc pre-installed for Haskell projects. Cheers, S.
participants (2)
-
L Corbijn
-
Sven Panne