From 03723649d3849d99df013807485adc1d5b2110b3 Mon Sep 17 00:00:00 2001 From: artembo Date: Tue, 12 Jul 2022 16:38:50 +0300 Subject: [PATCH] deb: disable running tests on build `Packpack` performs building rpm packages in a clean docker container. The container must contain `luatest` to perform testing during the build as it was set by `-DEB_MAKE_CHECK_TARGET := luatest` variable. It's quite challenging to set up `luacheck` while the package is building and a bit useless because the module is tested in another job. This commit removes testing http module during the build by `packpack`. --- debian/rules | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/rules b/debian/rules index c0fe2d9..821d511 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,6 @@ DEB_CMAKE_EXTRA_FLAGS := -DCMAKE_INSTALL_LIBDIR=lib/$(DEB_HOST_MULTIARCH) \ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DEB_MAKE_CHECK_TARGET := luatest include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/cmake.mk