This is an automated email from the ASF dual-hosted git repository. jerzy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
commit ec93a2a82c6d075ceef08de4a807950a80dd052d Author: Jerzy Kasenberg <[email protected]> AuthorDate: Fri Apr 12 20:19:31 2024 +0200 ci: Update ignored BSPs for bootloader build test - native was added twice for linux build - olimex-p103 is a bsp with no space for bootloader there was only one linker script with memory regions that was used for testing bootloader and application. Now that fake memory regions are removed from bsp bootloader build would fail but there is no point in building it. --- .github/test_build_bootloader.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/test_build_bootloader.sh b/.github/test_build_bootloader.sh index 877863dab..998403839 100644 --- a/.github/test_build_bootloader.sh +++ b/.github/test_build_bootloader.sh @@ -21,14 +21,9 @@ EXIT_CODE=0 BSPS=$(ls repos/apache-mynewt-core/hw/bsp) IGNORED_BSPS="ci40 dialog_cmac embarc_emsk hifive1 native native-armv7\ - native-mips olimex-pic32-emz64 olimex-pic32-hmz144\ + native-mips olimex-p103 olimex-pic32-emz64 olimex-pic32-hmz144\ pic32mx470_6lp_clicker pic32mz2048_wi-fire usbmkw41z" -# native is supported only on Linux (mind the space) -if [ $RUNNER_OS != "Linux" ]; then - IGNORED_BSPS+=" native" -fi - BSP_COUNT=0 for bsp in ${BSPS}; do
