From 44d77c71002223c49d15d65b83a6556722107190 Mon Sep 17 00:00:00 2001 From: Sergei Silnov Date: Fri, 17 Apr 2020 16:02:53 +0200 Subject: [PATCH] Fix cmake component management test on shell runners --- tools/ci/test_build_system_cmake.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/test_build_system_cmake.sh b/tools/ci/test_build_system_cmake.sh index e4a277bd2b..ad7e8e49ba 100755 --- a/tools/ci/test_build_system_cmake.sh +++ b/tools/ci/test_build_system_cmake.sh @@ -661,6 +661,8 @@ endmenu\n" >> ${IDF_PATH}/Kconfig print_status "Compiles with dependencies delivered by component manager" clean_build_dir + # Make sure that component manager is not installed + pip uninstall -y idf_component_manager printf "\n#include \"test_component.h\"\n" >> main/main.c printf "dependencies:\n test_component:\n path: test_component\n git: ${COMPONENT_MANAGER_TEST_REPO}\n" >> idf_project.yml ! idf.py build || failure "Build should fail if dependencies are not installed"