aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2017-10-04 11:14:42 -0300
committerGitHub <noreply@github.com>2017-10-04 11:14:42 -0300
commit84b4fe99cac37850a97858e0b641043bd3178d8a (patch)
treeb4578689091b8360aed71f531faf2513b7d41684 /.travis.yml
parent100c18d048936b5a47f29f55e6ce8b24277fb70f (diff)
downloadluarocks-84b4fe99cac37850a97858e0b641043bd3178d8a.tar.gz
luarocks-84b4fe99cac37850a97858e0b641043bd3178d8a.tar.bz2
luarocks-84b4fe99cac37850a97858e0b641043bd3178d8a.zip
Use versioned files only. (#734)
Let's take the opportunity of a new major version to make an important cleanup: getting rid of the error-prone unversioned configuration files. This drops support for: * Unversioned config.lua -> use config-5.x.lua * Unversioned luarocks/site_config.lua -> it always generates luarocks/core/site_config_5_x.lua * Unversioned lib/luarocks/rocks -> it always uses lib/luarocks/rocks-5.x
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index e842371a..466177f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -63,8 +63,9 @@ install:
63 - if [ ! -f lua_install/bin/luacov ]; then luarocks install luacov; luarocks install luacov-coveralls; fi 63 - if [ ! -f lua_install/bin/luacov ]; then luarocks install luacov; luarocks install luacov-coveralls; fi
64 64
65script: 65script:
66 - busted -o gtest --verbose -Xhelper travis 66 - lua -v
67 - busted -o gtest --verbose -Xhelper travis,env=full 67 - busted -o gtest --verbose -Xhelper "lua_dir=$PWD/lua_install,travis"
68 - busted -o gtest --verbose -Xhelper "lua_dir=$PWD/lua_install,travis,env=full"
68 69
69after_success: 70after_success:
70 - luacov -c $TRAVIS_BUILD_DIR/test/luacov.config 71 - luacov -c $TRAVIS_BUILD_DIR/test/luacov.config