murdock: add native:hello-world and periph_* to Kconfig tests

This commit is contained in:
Leandro Lanzieri 2020-09-09 17:19:16 +02:00
parent 1d868f2b7b
commit f973f8de03
No known key found for this signature in database
GPG Key ID: 13559905E2EBEAA5

View File

@ -4,6 +4,7 @@
: ${TEST_BOARDS_LLVM_COMPILE:="iotlab-m3 native nrf52dk mulle nucleo-f401re samr21-xpro slstk3402a"} : ${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 # 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_samr21_xpro:="examples/hello-world tests/periph_*"}
: ${TEST_KCONFIG_native:="examples/hello-world tests/periph_*"}
export RIOT_CI_BUILD=1 export RIOT_CI_BUILD=1
export CC_NOCOLOR=1 export CC_NOCOLOR=1
@ -39,6 +40,9 @@ get_kconfig_test_apps() {
case "$1" in case "$1" in
"samr21_xpro") echo "${TEST_KCONFIG_samr21_xpro}" ;; "samr21_xpro") echo "${TEST_KCONFIG_samr21_xpro}" ;;
esac esac
case "$1" in
"native") echo "${TEST_KCONFIG_native}" ;;
esac
} }
check_label() { check_label() {