1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 10:32:44 +01:00

Merge pull request #17595 from MrKevinWeiss/pr/explorekconfig

kconfig explore all allowed boards on all apps
This commit is contained in:
Kevin "Tristate Tom" Weiss 2022-02-08 08:46:55 +01:00 committed by GitHub
commit 648c6bcb88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View File

@ -174,6 +174,20 @@ get_supported_kconfig_board_app() {
if is_in_list "${board}" "${TEST_KCONFIG_BOARD_BLOCKLIST}"; then
return 1
fi
# On nightlies run all possible kconfig tests on all boards
# Normally we don't want to do this as it adds quite a bit to build time
# and the subset of boards we are testing for are pretty good at catching
# any bugs...
# This will be over one day, I promise.
if [ ${NIGHTLY} -eq 1 ]; then
if is_in_list "${appdir}" "${TEST_KCONFIG_ENFORCE_APP_GROUPS}"; then
return 0
fi
if [ -f "${appdir}/app.config.test" ]; then
return 0
fi
fi
if is_in_list "${appdir}" "${TEST_KCONFIG_TEST_ALLOWLIST}"; then
return 0
fi

View File

@ -4,7 +4,3 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += saul_gpio
# USEMODULE += si7034 # TODO: add when si70xx driver is updated
endif
ifneq (,$(filter vfs,$(USEMODULE)))
USEMODULE += mtd_sdcard
endif