From 3633475a6fb003d4dde5d440ee691a0df15b0e4b Mon Sep 17 00:00:00 2001 From: Yuansheng Date: Sat, 17 Oct 2020 22:42:45 -0400 Subject: [PATCH 1/3] CI: remove `luacov`, maybe reopen it later. --- .travis/linux_openresty_runner.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis/linux_openresty_runner.sh b/.travis/linux_openresty_runner.sh index 62a6939365c3..073b0666d6ec 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/ From f50645ab4329f11d7cbacd607d25795b8f070d94 Mon Sep 17 00:00:00 2001 From: Yuansheng Date: Sat, 17 Oct 2020 22:44:35 -0400 Subject: [PATCH 2/3] change: diable luacov. --- .travis/linux_openresty_runner.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/linux_openresty_runner.sh b/.travis/linux_openresty_runner.sh index 073b0666d6ec..c510794b97ad 100755 --- a/.travis/linux_openresty_runner.sh +++ b/.travis/linux_openresty_runner.sh @@ -175,8 +175,8 @@ script() { } after_success() { - cat luacov.stats.out - luacov-coveralls + # cat luacov.stats.out + # luacov-coveralls } case_opt=$1 From b12056c69bc68823bb37a4f5121fb2393efa59ad Mon Sep 17 00:00:00 2001 From: Yuansheng Date: Sun, 18 Oct 2020 11:03:13 +0800 Subject: [PATCH 3/3] no message --- .travis/linux_openresty_runner.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis/linux_openresty_runner.sh b/.travis/linux_openresty_runner.sh index c510794b97ad..f0d7360aea70 100755 --- a/.travis/linux_openresty_runner.sh +++ b/.travis/linux_openresty_runner.sh @@ -177,6 +177,7 @@ script() { after_success() { # cat luacov.stats.out # luacov-coveralls + echo "done" } case_opt=$1