mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
35 lines
836 B
YAML
35 lines
836 B
YAML
matrix:
|
|
include:
|
|
- language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- rust: nightly
|
|
cache: cargo
|
|
|
|
# http://kiki.to/blog/2016/02/04/talk-continuous-integration-with-lua/
|
|
- language: python
|
|
env:
|
|
- LUA="lua=5.1"
|
|
|
|
before_install:
|
|
- pip install hererocks
|
|
- hererocks lua_install -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/lua_install/bin
|
|
|
|
install:
|
|
- luarocks install luafilesystem
|
|
- luarocks install busted
|
|
- luarocks install luacov
|
|
- luarocks install luacov-coveralls
|
|
- luarocks install luacheck
|
|
|
|
script:
|
|
- cd plugin && luacheck . && cd ..
|
|
- lua -lluacov spec.lua
|
|
|
|
after_success:
|
|
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install |