prepare merge

This commit is contained in:
Julian K. Arni 2015-04-20 11:15:58 +02:00
parent 0173087166
commit 45f35852f8
15 changed files with 0 additions and 69 deletions

1
.ghci
View File

@ -1 +0,0 @@
:set -isrc

17
.gitignore vendored
View File

@ -1,17 +0,0 @@
dist
cabal-dev
*.o
*.hi
*.chi
*.chs.h
*.dyn_o
*.dyn_hi
.virtualenv
.hpc
.hsenv
.cabal-sandbox/
cabal.sandbox.config
cabal.config
*.prof
*.aux
*.hp

View File

@ -1,51 +0,0 @@
language: haskell
env:
- GHCVER=7.8.3
before_install:
- |
if [ $GHCVER = `ghc --numeric-version` ]; then
travis/cabal-apt-install --enable-tests $MODE
export CABAL=cabal
else
travis_retry sudo add-apt-repository -y ppa:hvr/ghc
travis_retry sudo apt-get update
travis_retry sudo apt-get install cabal-install-1.18 ghc-$GHCVER happy
export CABAL=cabal-1.18
export PATH=/opt/ghc/$GHCVER/bin:$PATH
fi
- $CABAL update
- |
if [ $GHCVER = "head" ] || [ $GHCVER = "7.8.3" ]; then
$CABAL install happy alex
export PATH=$HOME/.cabal/bin:$PATH
fi
- git clone https://github.com/haskell-servant/servant.git
- git clone https://github.com/haskell-servant/servant-server.git
- cabal sandbox init
- cabal sandbox add-source servant
- cabal sandbox add-source servant-server
install:
- cabal install --only-dependencies --enable-tests
script:
- cabal configure --enable-tests --enable-library-coverage
- cabal build && cabal test
- cabal sdist
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=test spec
notifications:
irc:
channels:
- "irc.freenode.org#servant"
template:
- "%{repository}#%{build_number} - %{commit} on %{branch} by %{author}: %{message}"
- "Build details: %{build_url} - Change view: %{compare_url}"
skip_join: true
on_success: change
on_failure: always