Skip to content

Commit

Permalink
makefiles: quiet messages on CI
Browse files Browse the repository at this point in the history
After introducing RIOT-OS#18423 there are occasional messages that still happen.
These messages cause a diff output when testing with TEST_KCONFIG=1.
This then causes a failure when comparing make/kconfig modules and packages.
  • Loading branch information
MrKevinWeiss committed Aug 18, 2022
1 parent 2dd5923 commit 385a115
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions makefiles/tools/kconfiglib.inc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ MENUCONFIG ?= $(RIOTTOOLS)/kconfiglib/riot_menuconfig.py
BASE_MENUCONFIG ?= $(RIOTTOOLS)/kconfiglib/menuconfig.py
GENCONFIG := $(RIOTTOOLS)/kconfiglib/genconfig.py

ifeq ($(RIOT_CI_BUILD),1)
QUIETMESSAGES=":"
endif
$(BASE_MENUCONFIG):
@echo "[INFO] Kconfiglib not found - getting it"
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib not found - getting it"
@$(MAKE) -C $(RIOTTOOLS)/kconfiglib
@echo "[INFO] Kconfiglib downloaded"
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib downloaded"


$(GENCONFIG): $(BASE_MENUCONFIG)

0 comments on commit 385a115

Please sign in to comment.