forked from daurnimator/lua-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (52 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
language: python
sudo: false
env:
matrix:
- LUA="lua 5.1"
- LUA="lua 5.1" ZLIB=lzlib
- LUA="lua 5.1" ZLIB=lua-zlib
- LUA="lua 5.2"
- LUA="lua 5.2" ZLIB=lzlib
- LUA="lua 5.2" ZLIB=lua-zlib
- LUA="lua 5.3"
- LUA="lua 5.3" ZLIB=lzlib
- LUA="lua 5.3" ZLIB=lua-zlib
- LUA="lua 5.3" COMPAT53=no
- LUA="lua 5.3" LUA_CFLAGS="-DLUA_INT_TYPE=LUA_INT_INT"
- LUA="luajit @"
- LUA="luajit @" ZLIB=lzlib
- LUA="luajit @" ZLIB=lua-zlib
- LUA="luajit 2.0"
- LUA="luajit 2.0" ZLIB=lzlib
- LUA="luajit 2.0" ZLIB=lua-zlib
- LUA="luajit 2.1"
- LUA="luajit 2.1" ZLIB=lzlib
- LUA="luajit 2.1" ZLIB=lua-zlib
branches:
only:
- master
before_install:
- pip install hererocks
- hererocks ~/hererocks -r^ --$LUA --cflags=$LUA_CFLAGS
- export PATH=$PATH:~/hererocks/bin
- eval $(luarocks path --bin)
- luarocks install luacheck
- luarocks install luacov-coveralls
- luarocks install busted
install:
- luarocks install --only-deps http-scm-0.rockspec
- if [ "$ZLIB" = "lzlib" ]; then luarocks install lzlib; fi
- if [ "$ZLIB" = "lua-zlib" ]; then luarocks install lua-zlib; fi
- if [ "$COMPAT53" = "no" ]; then luarocks remove compat53; fi
script:
- luacheck .
- busted -c
after_success:
- luacov-coveralls -v
notifications:
email:
on_success: change
on_failure: always
cache:
directories:
- $HOME/.cache/hererocks