diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-02 14:15:50 +0300 |
---|---|---|
committer | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-03 20:24:08 +0300 |
commit | a9a95acd68fcf1e4eb58805e90d62beeb5fbb34c (patch) | |
tree | bc7da02f835ff1f8da3fd6ed4fe8ff9e4f105e13 /.travis.yml | |
parent | 210322f493936db2511fa2f60316e140a7385d37 (diff) | |
download | luafilesystem-a9a95acd68fcf1e4eb58805e90d62beeb5fbb34c.tar.gz luafilesystem-a9a95acd68fcf1e4eb58805e90d62beeb5fbb34c.tar.bz2 luafilesystem-a9a95acd68fcf1e4eb58805e90d62beeb5fbb34c.zip |
Use hererocks for Travis-CI
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index fd4ce5d..04d46ac 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -3,18 +3,16 @@ language: c | |||
3 | sudo: false | 3 | sudo: false |
4 | 4 | ||
5 | env: | 5 | env: |
6 | global: | 6 | - LUA="lua 5.1" |
7 | - LUAROCKS=2.3.0 | 7 | - LUA="lua 5.2" |
8 | matrix: | 8 | - LUA="lua 5.3" |
9 | - LUA=lua5.1 | 9 | - LUA="luajit 2.0" |
10 | - LUA=lua5.2 | ||
11 | - LUA=lua5.3 | ||
12 | - LUA=luajit | ||
13 | 10 | ||
14 | before_install: | 11 | before_install: |
15 | - source .travis/setenv_lua.sh | 12 | - pip install --user cpp-coveralls hererocks |
16 | - pip install --user cpp-coveralls | 13 | - hererocks env --$LUA --luarocks latest |
17 | - luarocks install Lua-cURL --server=https://luarocks.org/dev | 14 | - export PATH="$PWD/env/bin:$PATH" |
15 | - luarocks install Lua-cURL --server=https://luarocks.org/dev | ||
18 | - luarocks install lua-path | 16 | - luarocks install lua-path |
19 | - luarocks install lua-cjson | 17 | - luarocks install lua-cjson |
20 | - luarocks install luacov | 18 | - luarocks install luacov |