blob: 27fe9c591897dc2736792429fcbf84fe3c91e9c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
language: c
sudo: false
env:
global:
- LUAROCKS=2.2.1
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.3)
- LUA=luajit2.0 # current head of 2.0 branch
#- LUA=luajit2.1 # current head of 2.1 branch
before_install:
- source .travis/setenv_lua.sh
script:
- lua valua-test.lua
after_success:
notifications:
email:
on_success: change
on_failure: always
|