2015-10-31 14:50:21 +00:00
|
|
|
language: python
|
|
|
|
sudo: false
|
2013-01-02 00:51:09 +00:00
|
|
|
|
|
|
|
env:
|
2015-10-31 14:50:21 +00:00
|
|
|
- LUA="lua=5.1"
|
|
|
|
- LUA="lua=5.2"
|
|
|
|
- LUA="lua=5.3"
|
|
|
|
- LUA="luajit=2.0"
|
|
|
|
- LUA="luajit=2.1"
|
2013-12-05 00:15:08 +00:00
|
|
|
|
2013-12-06 20:28:31 +00:00
|
|
|
before_install:
|
2015-10-31 14:50:21 +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
|
2013-12-06 20:28:31 +00:00
|
|
|
|
2015-10-31 14:50:21 +00:00
|
|
|
script:
|
|
|
|
- busted -v
|
2015-10-04 19:52:46 +00:00
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- gh-pages
|
2013-12-06 20:28:31 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|