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