forked from luarocks/luarocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
71 lines (64 loc) · 1.5 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
62
63
64
65
66
67
68
69
70
71
language: python
matrix:
include:
- os: linux
env:
- LUA="lua=5.1"
- os: linux
env:
- LUA="lua=5.2"
- os: linux
env:
- LUA="lua=5.3"
- os: linux
env:
- LUA="luajit=2.0"
- os: linux
env:
- LUA="luajit=2.1"
- os: osx
language: generic
env:
- LUA="lua=5.1"
- os: osx
language: generic
env:
- LUA="lua=5.2"
- os: osx
language: generic
env:
- LUA="lua=5.3"
- os: osx
language: generic
env:
- LUA="luajit=2.0"
- os: osx
language: generic
env:
- LUA="luajit=2.1"
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update;fi
- pip install hererocks
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
install:
- luarocks install busted
- luarocks install luacov
- luarocks install luacov-coveralls
script:
- busted -Xhelper travis --verbose
- busted -Xhelper travis,env=full --verbose
after_success:
- luacov -c $TRAVIS_BUILD_DIR/test/luacov.config
- cd $TRAVIS_BUILD_DIR/test/ && bash <(curl -s https://codecov.io/bash)
- grep "Summary" -B1 -A1000 $TRAVIS_BUILD_DIR/test/luacov.report.out
notifications:
email:
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/3320fc3f28abbb06e1d8
on_success: change
on_failure: always
on_start: never