From 2e858b7408e5537c75eb90d424ac76ea72345d90 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 25 Apr 2024 07:27:50 +0100 Subject: [PATCH] Remove pre hook from scheme/common/Makefile This hook does not appear to serve a purpose, and it triggers tests during docker deployment creation (by invoking "make -C ../../handler", which triggers the default target, which is "test"). This, in turn, causes copyright checks to run as part of docker creation which can cause problems in CI as these checks would not be property configured. Signed-off-by: Sergei Trofimov --- scheme/common/Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scheme/common/Makefile b/scheme/common/Makefile index 82bb3d62..17af9614 100644 --- a/scheme/common/Makefile +++ b/scheme/common/Makefile @@ -3,12 +3,6 @@ SUBDIR := arm -all: all-hook-pre -clean: - -all-hook-pre all-test-pre all-lint-pre: - $(MAKE) -C ../../handler - include ../../mk/common.mk include ../../mk/lint.mk include ../../mk/test.mk