From 770a1eae018dc7a31212bfe92fdcb93ebf2e9c81 Mon Sep 17 00:00:00 2001 From: Shivani Tipnis Date: Tue, 21 Jan 2020 15:57:45 +0530 Subject: [PATCH] ci: Fix target variable default value --- tools/ci/python_packages/ttfw_idf/IDFApp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/ci/python_packages/ttfw_idf/IDFApp.py b/tools/ci/python_packages/ttfw_idf/IDFApp.py index d21e5e1cf..6838e75ed 100644 --- a/tools/ci/python_packages/ttfw_idf/IDFApp.py +++ b/tools/ci/python_packages/ttfw_idf/IDFApp.py @@ -319,6 +319,9 @@ class Example(IDFApp): if not config_name: config_name = "default" + if not target: + target = "esp32" + # Search for CI build folders. # Path format: $IDF_PATH/build_examples/app_path_with_underscores/config/target # (see tools/ci/build_examples_cmake.sh)