Added travis CI integration

master
Abhinav Sarkar 2014-05-25 19:33:18 +05:30
父节点 ca6ef0f166
当前提交 61b50c7354
共有 6 个文件被更改,包括 17 次插入5 次删除

10
.travis.yml Normal file
查看文件

@ -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"

查看文件

@ -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
查看文件

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

查看文件

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

2
hask-irc-runner/Setup.hs Normal file
查看文件

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

查看文件

@ -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 ..