]> git.lizzy.rs Git - lua-star.git/blob - .travis.yml
3D Support
[lua-star.git] / .travis.yml
1 language: python
2 sudo: false
3
4 env:
5   - LUA="lua=5.1"
6
7 before_install:
8   - pip install hererocks
9   - hererocks lua_install -r^ --$LUA
10   - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
11
12 install:
13   - luarocks install busted
14
15 script:
16   - busted
17
18 after_success:
19   - luacov-coveralls --exclude $TRAVIS_BUILD_DIR/lua_install
20
21 branches:
22   only:
23     - master
24     - stable
25     - beta
26   except:
27     - gh-pages
28
29 notifications:
30   email:
31     on_success: change
32     on_failure: always