mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
24 lines
398 B
YAML
24 lines
398 B
YAML
language: c
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
global:
|
|
- LUAROCKS=2.2.2
|
|
matrix:
|
|
- LUA=lua5.1
|
|
- LUA=lua5.2
|
|
- LUA=lua5.3
|
|
- LUA=luajit2.1 # current head of 2.1 branch
|
|
- LUA=luajit2.1 BUSTED="-o spec/coverage_output_handler.moon"
|
|
|
|
before_install:
|
|
- source .travis/setenv_lua.sh
|
|
|
|
install:
|
|
- luarocks install busted
|
|
- luarocks install loadkit
|
|
- luarocks make
|
|
|
|
script: busted $BUSTED
|