Commit bb881aa0 authored by Andrew Gibiansky's avatar Andrew Gibiansky

Disable ihaskell-display checking for ghc 7.10

parent 8eaf1aa6
......@@ -31,13 +31,16 @@ install:
- travis_retry cabal update
- travis_retry cabal install cpphs
- travis_retry cabal install gtk2hs-buildtools
- travis_retry cabal install arithmoi==0.4.* -fllvm
- |
if [ ${GHCVER%.*} = "7.8" ]; then
travis_retry cabal install arithmoi==0.4.* -fllvm
fi
# Here starts the actual work to be performed for the package under test; any command which exits with a non-zero exit code causes the build to fail.
script:
- travis_retry ./build.sh all
- |
if [ ${GHCVER%.*} = "7.8" ] || [ ${GHCVER%.*} = "7.10" ]; then
if [ ${GHCVER%.*} = "7.8" ]; then
travis_retry ./build.sh display;
fi
# Build and run the test suite
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment