mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 22:25:26 +00:00
* Add 'plugins' field to project and add rlua * Scaffold out new SnapshotContext type (again) with plugin state * Almost functional snapshot system with rlua proof-of-concept * Gate plugin config on 'plugins-enabled' feature, tell Travis to test all features * Guard remaining plugin setup code behind feature * Bump minimum version to 1.33, should've caught this before * Whoops, latest Rust is 1.32, not 1.33
50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
matrix:
|
|
include:
|
|
- 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 src
|
|
- lua -lluacov spec.lua
|
|
|
|
after_success:
|
|
- cd plugin
|
|
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install
|
|
|
|
- language: rust
|
|
rust: 1.32.0
|
|
cache: cargo
|
|
|
|
script:
|
|
- cargo test --verbose
|
|
- cargo test --verbose --all-features
|
|
|
|
- language: rust
|
|
rust: stable
|
|
cache: cargo
|
|
|
|
script:
|
|
- cargo test --verbose
|
|
- cargo test --verbose --all-features
|
|
|
|
- language: rust
|
|
rust: beta
|
|
cache: cargo
|
|
|
|
script:
|
|
- cargo test --verbose
|
|
- cargo test --verbose --all-features |