Added travis CI integration
This commit is contained in:
parent
ca6ef0f166
commit
61b50c7354
|
@ -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"
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
import Distribution.Simple
|
||||
main = defaultMain
|
|
@ -0,0 +1,2 @@
|
|||
import Distribution.Simple
|
||||
main = defaultMain
|
|
@ -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 ..
|
||||
|
|
Loading…
Reference in New Issue