-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy path.travis.yml
44 lines (36 loc) · 1.02 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
language: c
sudo: false
env:
global:
- LUAROCKS=3.1.3
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
# - LUA=lua5.4
- LUA=luajit # latest stable version
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
#branches:
# only:
# - master
before_install:
- source .travis/setenv_lua.sh
- pip install --user cpp-coveralls
- luarocks install Lua-cURL --server=https://luarocks.org/dev
- luarocks install luacov-coveralls --server=https://luarocks.org/dev
- luarocks install lunitx
install:
- luarocks make rockspecs/htmlparser-scm-0.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
script:
- cd tst
# - lua -e "print(require'cURL'.version())"
# - lua -l tst.init -e "" # Lua5.3 fails this way
- lunit.sh init.lua
after_success:
- coveralls -b .. -r .. -i ./src --dump c.report.json
- luacov-coveralls -j c.report.json -v
notifications:
email:
on_success: change
on_failure: always