-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.travis.yml
43 lines (36 loc) · 1.05 KB
/
.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
language: python
sudo: false
env:
matrix:
- LUA="lua 5.1" SOCKET=true
- LUA="lua 5.1"
- LUA="lua 5.2" SOCKET=true
- LUA="lua 5.2"
- LUA="lua 5.3" SOCKET=true
- LUA="lua 5.3"
- LUA="luajit 2.0"
- LUA="luajit 2.1" SOCKET=true SYSCALL=true
- LUA="luajit 2.1" SYSCALL=true
- LUA="luajit 2.1"
- LUA="luajit @"
before_install:
- pip install hererocks
- hererocks here -r^ --$LUA # Install latest LuaRocks version
# plus the Lua version for this build job
# into 'here' subdirectory
- export PATH=$PATH:$PWD/here/bin # Add directory with all installed binaries to PATH
- eval `luarocks path --bin`
- luarocks install luacov-coveralls
- luarocks install busted
install:
- luarocks make
- if [ "$SOCKET" = "true" ]; then luarocks install luasocket; fi
- if [ "$SYSCALL" = "true" ]; then luarocks install ljsyscall; fi
script:
- busted -c
after_success:
- luacov-coveralls -v
notifications:
email:
on_success: change
on_failure: always