Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYonaba <roland.yonaba@gmail.com>2018-08-22 22:40:55 +0300
committerYonaba <roland.yonaba@gmail.com>2018-08-22 22:40:55 +0300
commiteac25e6af8158d23380f9d80fb2c06e021898710 (patch)
treeb0f815cc29758a2794ba10a9436bf9c0f6862bce
parentbe9d97d6419fd097eba204ab341f34038cbbb57c (diff)
Updated travis to Lua 5.3.5 and LuaRocks 3.0.1
-rw-r--r--.travis.yml2
-rw-r--r--.travis/setup_lua.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index d884837..3de9254 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,7 @@ sudo: false
env:
global:
- - LUAROCKS=2.3.0
+ - LUAROCKS=3.0.1
matrix:
- LUA=lua5.1
- LUA=lua5.2
diff --git a/.travis/setup_lua.sh b/.travis/setup_lua.sh
index 6dcc0c6..8ac6fe2 100644
--- a/.travis/setup_lua.sh
+++ b/.travis/setup_lua.sh
@@ -2,7 +2,7 @@
# A script for setting up environment for travis-ci testing.
# Sets up Lua and Luarocks.
-# LUA must be "lua5.1", "lua5.2" or "luajit".
+# LUA must be "lua5.1", "lua5.2", "lua5.3" or "luajit".
# luajit2.0 - master v2.0
# luajit2.1 - master v2.1
@@ -67,8 +67,8 @@ else
curl http://www.lua.org/ftp/lua-5.2.4.tar.gz | tar xz
cd lua-5.2.4;
elif [ "$LUA" == "lua5.3" ]; then
- curl http://www.lua.org/ftp/lua-5.3.2.tar.gz | tar xz
- cd lua-5.3.2;
+ curl http://www.lua.org/ftp/lua-5.3.5.tar.gz | tar xz
+ cd lua-5.3.5;
fi
# Build Lua without backwards compatibility for testing
@@ -118,5 +118,5 @@ elif [ "$LUA" == "lua5.1" ]; then
elif [ "$LUA" == "lua5.2" ]; then
rm -rf lua-5.2.4;
elif [ "$LUA" == "lua5.3" ]; then
- rm -rf lua-5.3.2;
+ rm -rf lua-5.3.5;
fi