ci: Fix build system tests to clean the dir

pull/8180/head
Anton Maklakov 2021-11-26 12:23:14 +07:00 zatwierdzone przez Sergei Silnov
rodzic 6ed81a632c
commit 6ebd748c75
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -702,6 +702,7 @@ endmenu\n" >> ${IDF_PATH}/Kconfig
rm -f log.txt
print_status "Build fails if partitions don't fit in flash"
clean_build_dir
sed -i.bak "s/CONFIG_ESPTOOLPY_FLASHSIZE.\+//" sdkconfig # remove all flashsize config
echo "CONFIG_ESPTOOLPY_FLASHSIZE_1MB=y" >> sdkconfig # introduce undersize flash
( idf.py build 2>&1 | grep "does not fit in configured flash size 1MB" ) || failure "Build didn't fail with expected flash size failure message"
@ -824,7 +825,6 @@ endmenu\n" >> ${IDF_PATH}/Kconfig
rm -rf "$IDF_PATH/example_proj"
print_status "All tests completed"
if [ -n "${FAILURES}" ]; then
echo "Some failures were detected:"