2017-04-09 06:15:06 +00:00
|
|
|
language: c
|
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- LUAROCKS=2.3.0
|
|
|
|
matrix:
|
|
|
|
- LUA=lua5.1
|
|
|
|
- LUA=lua5.2
|
|
|
|
- LUA=lua5.3
|
|
|
|
- LUA=luajit # latest stable version (2.0.4)
|
|
|
|
- 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:
|
2017-04-09 06:59:14 +00:00
|
|
|
# - cd tst
|
2017-04-09 06:15:06 +00:00
|
|
|
- lua -e "print(require'cURL'.version())"
|
2017-04-09 06:59:14 +00:00
|
|
|
# - lunit.sh init.lua
|
|
|
|
- lua -l tst -e ""
|
2017-04-09 06:15:06 +00:00
|
|
|
|
|
|
|
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
|