-
Notifications
You must be signed in to change notification settings - Fork 21
/
.travis.yml
45 lines (38 loc) · 881 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
language: erlang
env:
- LUA="Lua 5.1"
- LUA="Lua 5.2"
- LUA="Lua 5.3"
- LUA="LuaJIT 2.0"
branches:
only:
- master
before_install:
- bash .travis_setup.sh
install:
- sudo luarocks install luafilesystem
- git clone git://github.com/Olivine-Labs/say.git
- cd say
- sudo luarocks make
- cd ../
- git clone git://github.com/Olivine-Labs/luassert.git
- cd luassert
- sudo luarocks make
- cd ../
- git clone git://github.com/Olivine-Labs/busted.git
- cd busted
- sudo luarocks make busted-scm-0.rockspec
- cd ../
- git clone git://github.com/Olivine-Labs/mediator_lua.git
- cd mediator_lua
- sudo luarocks make
- cd ../
script: "busted spec"
notifications:
webhooks:
- http://hollow-mountain-1250.herokuapp.com/hubot/travis
recipients:
email:
on_success: always
on_failure: always