forked from lunarmodules/busted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (32 loc) · 810 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
language: erlang
env:
- LUA="lua5.1"
- LUA="lua5.2"
- LUA="luajit"
install:
- sudo apt-get install lua5.1
- sudo apt-get install lua5.2
- sudo apt-get install luajit
- sudo apt-get install luarocks
- 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
- cd ../
script: "sudo luarocks make && busted spec/core_spec.lua"
notifications:
webhooks:
- http://hollow-mountain-1250.herokuapp.com/hubot/travis
recipients:
- engineers@olivinelabs.com
email:
on_success: always
on_failure: always