Commit 398da0db authored by Andrew Gibiansky's avatar Andrew Gibiansky

Disable ihaskell-display checking for ghc 7.6.3 and head

parent fcb5107c
...@@ -36,7 +36,9 @@ install: ...@@ -36,7 +36,9 @@ install:
# 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. # 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: script:
- travis_retry ./build.sh all - travis_retry ./build.sh all
- travis_retry ./build.sh display - if [ ${GHCVER%.*} = "7.8" ] || [ ${GHCVER%.*} = "7.10" ]; then
travis_retry ./build.sh display
fi
- cabal sdist - cabal sdist
# The following scriptlet checks that the resulting source distribution can be built & installed # The following scriptlet checks that the resulting source distribution can be built & installed
......
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