Try radically changing the Travis script

This commit is contained in:
Lucien Greathouse
2017-12-08 15:39:17 -08:00
parent fd7e737c20
commit 7995b6eca4

View File

@@ -1,24 +1,14 @@
matrix: language: python
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: env:
- LUA="lua=5.1" - RUST="stable" LUA="lua=5.1"
- RUST="beta" LUA="lua=5.1"
before_install: before_install:
- pip install hererocks - pip install hererocks
- hererocks lua_install -r^ --$LUA - hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin - export PATH=$PATH:$PWD/lua_install/bin
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST
install: install:
- luarocks install luafilesystem - luarocks install luafilesystem
@@ -30,6 +20,7 @@ matrix:
script: script:
- cd plugin && luacheck . && cd .. - cd plugin && luacheck . && cd ..
- lua -lluacov spec.lua - lua -lluacov spec.lua
- cargo test --verbose
after_success: after_success:
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install - luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install