From f605e0334490c85f0ea0fd2dbbd8b7cf48122063 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Fri, 9 Sep 2016 10:49:35 +1000 Subject: [PATCH] make debugging: With V=1, output when including each Makefile.projbuild also enable V=1 on CI builds --- .gitlab-ci.yml | 2 +- make/project.mk | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 15a1db2fc0..c222ca2fd2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ build_template_app: # branch - git checkout ${CI_BUILD_REF_NAME} || echo "Using esp-idf-template default branch..." - make defconfig - - make all + - make all V=1 test_nvs_on_host: stage: test diff --git a/make/project.mk b/make/project.mk index 7526774bdb..b86470bf62 100644 --- a/make/project.mk +++ b/make/project.mk @@ -193,6 +193,7 @@ APP_BIN:=$(APP_ELF:.elf=.bin) # Include any Makefile.projbuild file letting components add # configuration at the project level define includeProjBuildMakefile +$(if $(V),$(if $(wildcard $(1)/Makefile.projbuild),$(info including $(1)/Makefile.projbuild...))) COMPONENT_PATH := $(1) -include $(1)/Makefile.projbuild endef -- 2.40.0