From 1f376ac872f4bf70eb984a0e105362e779927cf2 Mon Sep 17 00:00:00 2001 From: YuanSheng Wang Date: Tue, 20 Oct 2020 09:46:20 +0800 Subject: [PATCH] CI: remove `luacov` in CI. (#2456) --- .travis/linux_openresty_runner.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis/linux_openresty_runner.sh b/.travis/linux_openresty_runner.sh index 62a6939365c3..f0d7360aea70 100755 --- a/.travis/linux_openresty_runner.sh +++ b/.travis/linux_openresty_runner.sh @@ -26,7 +26,8 @@ create_lua_deps() { echo "Create lua deps cache" make deps - luarocks install luacov-coveralls --tree=deps --local > build.log 2>&1 || (cat build.log && exit 1) + # maybe reopen this feature later + # luarocks install luacov-coveralls --tree=deps --local > build.log 2>&1 || (cat build.log && exit 1) sudo rm -rf build-cache/deps sudo cp -r deps build-cache/ @@ -174,8 +175,9 @@ script() { } after_success() { - cat luacov.stats.out - luacov-coveralls + # cat luacov.stats.out + # luacov-coveralls + echo "done" } case_opt=$1