From a0c025cc47558270e3c1cc60d5ff028293a85a75 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 20 Feb 2023 14:55:04 +0800 Subject: [PATCH] ci: use IDF_PATH as the manifest root path this would remove the restriction that tools/ci/ci_build_apps.py could only be run in IDF_PATH. --- tools/ci/ci_build_apps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/ci_build_apps.py b/tools/ci/ci_build_apps.py index 754dedb0a4..8afd6b97af 100644 --- a/tools/ci/ci_build_apps.py +++ b/tools/ci/ci_build_apps.py @@ -79,6 +79,7 @@ def get_pytest_apps( check_warnings=True, manifest_files=[str(p) for p in Path(IDF_PATH).glob('**/.build-test-rules.yml')], default_build_targets=SUPPORTED_TARGETS + extra_default_build_targets, + manifest_rootpath=IDF_PATH, ) for app in apps: @@ -109,6 +110,7 @@ def get_cmake_apps( preserve=False, manifest_files=[str(p) for p in Path(IDF_PATH).glob('**/.build-test-rules.yml')], default_build_targets=SUPPORTED_TARGETS + extra_default_build_targets, + manifest_rootpath=IDF_PATH, ) apps_for_build = []