forked from justbill2020/lua-dropbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (37 loc) · 1013 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
45
46
language: python
sudo: false
env:
matrix:
- LUA="lua 5.1"
- LUA="lua 5.2"
#- LUA="lua 5.3"
- LUA="luajit @"
- LUA="luajit 2.0"
- LUA="luajit 2.1"
branches:
only:
- master
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 install --only-deps lua-dropbox-0.1-0.rockspec
- if [ "$ZLIB" = "lzlib" ]; then luarocks install lzlib; fi
- if [ "$ZLIB" = "lua-zlib" ]; then luarocks install lua-zlib; fi
script:
- busted -c
after_success:
- luacov-coveralls -v
notifications:
email:
on_success: change
on_failure: always
cache:
directories:
- $HOME/.cache/hererocks