diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2017-10-04 11:14:42 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-04 11:14:42 -0300 |
commit | 84b4fe99cac37850a97858e0b641043bd3178d8a (patch) | |
tree | b4578689091b8360aed71f531faf2513b7d41684 /.travis.yml | |
parent | 100c18d048936b5a47f29f55e6ce8b24277fb70f (diff) | |
download | luarocks-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.yml | 5 |
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 | ||
65 | script: | 65 | script: |
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 | ||
69 | after_success: | 70 | after_success: |
70 | - luacov -c $TRAVIS_BUILD_DIR/test/luacov.config | 71 | - luacov -c $TRAVIS_BUILD_DIR/test/luacov.config |