Added travis CI integration

master
Abhinav Sarkar 2014-05-25 19:33:18 +05:30
padre ca6ef0f166
commit 61b50c7354
Se han modificado 6 ficheros con 17 adiciones y 5 borrados

10
.travis.yml Normal file
Ver fichero

@ -0,0 +1,10 @@
language: haskell
ghc: 7.8
before_install:
- ./init-sandbox.sh
- "cd hask-irc-runner"
notifications:
email: true
irc:
- "irc.immortal-anime.net#animestan"

Ver fichero

@ -3,7 +3,7 @@ port = 6667
channel = "#testtesttest"
nick = "haskman"
timeout = 130
msghandlers = ["greeter", "welcomer", "songsearch", "auth", "nicktracker"]
msghandlers = ["greeter", "welcomer", "messagelogger", "songsearch", "auth", "nicktracker"]
songsearch {
tinysong_apikey = "xxxyyyzzz"

2
hask-irc-core/Setup.hs Normal file
Ver fichero

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

Ver fichero

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

2
hask-irc-runner/Setup.hs Normal file
Ver fichero

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

Ver fichero

@ -16,7 +16,3 @@ cabal sandbox init --sandbox=../.cabal-sandbox
cabal sandbox add-source ../hask-irc-core/
cabal sandbox add-source ../hask-irc-handlers/
cd ..
cd hask-irc-core
cabal install -j3 --only-dependencies
cd ..