inspect.lua/.travis.yml

28 lines
450 B
YAML
Raw Normal View History

2015-11-13 21:11:17 +00:00
language: python
sudo: false
2013-01-02 00:50:54 +00:00
env:
2015-11-13 21:11:17 +00:00
- LUA="lua=5.1"
- LUA="lua=5.2"
- LUA="lua=5.3"
- LUA="luajit=2.0"
- LUA="luajit=2.1"
2014-09-13 12:44:56 +00:00
before_install:
2015-11-13 21:11:17 +00:00
- pip install hererocks
- hererocks base -r^ --$LUA
- export PATH=$PATH:$PWD/base/bin # Add directory with all installed binaries to PATH
- luarocks install busted
2014-09-13 12:44:56 +00:00
script:
2015-11-13 21:11:17 +00:00
- busted -v
branches:
except:
- gh-pages
2013-01-02 00:50:54 +00:00
2014-09-13 12:44:56 +00:00
notifications:
email:
on_success: change
on_failure: always