diff options
Diffstat (limited to 'Data/BuiltIn/Libraries/lua-stdlib/.travis.yml')
-rw-r--r-- | Data/BuiltIn/Libraries/lua-stdlib/.travis.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/lua-stdlib/.travis.yml b/Data/BuiltIn/Libraries/lua-stdlib/.travis.yml new file mode 100644 index 0000000..92f4f73 --- /dev/null +++ b/Data/BuiltIn/Libraries/lua-stdlib/.travis.yml @@ -0,0 +1,34 @@ +language: python + +sudo: false + +env: + matrix: + - LUA="lua=5.3" + - LUA="lua=5.2" + - LUA="lua=5.1" + - LUA="luajit=2.1" + - LUA="luajit=2.0" + +before_install: + - pip install hererocks + - hererocks here -r^ --$LUA --patch + - export PATH=$PWD/here/bin:$PATH + +install: + - luarocks install ldoc + - luarocks install ansicolors + - luarocks install specl + - luarocks install luacov + +script: + - make + - luarocks make + - make check SPECL_OPTS='-vfreport --coverage' + +after_success: + - tail luacov.report.out + - bash <(curl -s https://codecov.io/bash) -v + +notifications: + slack: aspirinc:JyWeNrIdS0J5nf2Pn2BS1cih |