From f973f8de03d5528c1346799fac71c82ec65a1b1d Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 9 Sep 2020 17:19:16 +0200 Subject: [PATCH] murdock: add native:hello-world and periph_* to Kconfig tests --- .murdock | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.murdock b/.murdock index bf31b8f2ff..a838296640 100755 --- a/.murdock +++ b/.murdock @@ -4,6 +4,7 @@ : ${TEST_BOARDS_LLVM_COMPILE:="iotlab-m3 native nrf52dk mulle nucleo-f401re samr21-xpro slstk3402a"} # we can't use '-' in the variable names, convert them to '_' to add new boards : ${TEST_KCONFIG_samr21_xpro:="examples/hello-world tests/periph_*"} +: ${TEST_KCONFIG_native:="examples/hello-world tests/periph_*"} export RIOT_CI_BUILD=1 export CC_NOCOLOR=1 @@ -39,6 +40,9 @@ get_kconfig_test_apps() { case "$1" in "samr21_xpro") echo "${TEST_KCONFIG_samr21_xpro}" ;; esac + case "$1" in + "native") echo "${TEST_KCONFIG_native}" ;; + esac } check_label() {