tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
# coding=utf-8
|
2020-07-21 04:00:05 -04:00
|
|
|
import fnmatch
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import os
|
2020-04-22 02:49:05 -04:00
|
|
|
import re
|
|
|
|
import shutil
|
2020-07-21 04:00:05 -04:00
|
|
|
import subprocess
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
import sys
|
2021-01-25 21:49:01 -05:00
|
|
|
import typing
|
2020-04-22 02:49:05 -04:00
|
|
|
from abc import abstractmethod
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
from collections import namedtuple
|
2020-06-08 23:35:08 -04:00
|
|
|
from io import open
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
DEFAULT_TARGET = 'esp32'
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
TARGET_PLACEHOLDER = '@t'
|
|
|
|
WILDCARD_PLACEHOLDER = '@w'
|
|
|
|
NAME_PLACEHOLDER = '@n'
|
|
|
|
FULL_NAME_PLACEHOLDER = '@f'
|
|
|
|
INDEX_PLACEHOLDER = '@i'
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
IDF_SIZE_PY = os.path.join(os.environ['IDF_PATH'], 'tools', 'idf_size.py')
|
2020-07-27 02:47:15 -04:00
|
|
|
SIZE_JSON_FN = 'size.json'
|
2020-07-21 04:00:05 -04:00
|
|
|
|
2020-05-05 22:40:23 -04:00
|
|
|
SDKCONFIG_LINE_REGEX = re.compile(r"^([^=]+)=\"?([^\"\n]*)\"?\n*$")
|
|
|
|
|
|
|
|
# If these keys are present in sdkconfig.defaults, they will be extracted and passed to CMake
|
|
|
|
SDKCONFIG_TEST_OPTS = [
|
2021-01-25 21:49:01 -05:00
|
|
|
'EXCLUDE_COMPONENTS',
|
|
|
|
'TEST_EXCLUDE_COMPONENTS',
|
|
|
|
'TEST_COMPONENTS',
|
2020-06-26 06:12:43 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# These keys in sdkconfig.defaults are not propagated to the final sdkconfig file:
|
|
|
|
SDKCONFIG_IGNORE_OPTS = [
|
2021-01-25 21:49:01 -05:00
|
|
|
'TEST_GROUPS'
|
2020-05-05 22:40:23 -04:00
|
|
|
]
|
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
# ConfigRule represents one --config argument of find_apps.py.
|
|
|
|
# file_name is the name of the sdkconfig file fragment, optionally with a single wildcard ('*' character).
|
|
|
|
# file_name can also be empty to indicate that the default configuration of the app should be used.
|
|
|
|
# config_name is the name of the corresponding build configuration, or None if the value of wildcard is to be used.
|
|
|
|
# For example:
|
|
|
|
# filename='', config_name='default' — represents the default app configuration, and gives it a name 'default'
|
|
|
|
# filename='sdkconfig.*', config_name=None - represents the set of configurations, names match the wildcard value
|
2021-01-25 21:49:01 -05:00
|
|
|
ConfigRule = namedtuple('ConfigRule', ['file_name', 'config_name'])
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
def config_rules_from_str(rule_strings): # type: (typing.List[str]) -> typing.List[ConfigRule]
|
|
|
|
"""
|
|
|
|
Helper function to convert strings like 'file_name=config_name' into ConfigRule objects
|
|
|
|
:param rule_strings: list of rules as strings
|
|
|
|
:return: list of ConfigRules
|
|
|
|
"""
|
|
|
|
rules = [] # type: typing.List[ConfigRule]
|
|
|
|
for rule_str in rule_strings:
|
2021-01-25 21:49:01 -05:00
|
|
|
items = rule_str.split('=', 2)
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
rules.append(ConfigRule(items[0], items[1] if len(items) == 2 else None))
|
|
|
|
return rules
|
|
|
|
|
|
|
|
|
2020-07-21 04:00:05 -04:00
|
|
|
def find_first_match(pattern, path):
|
|
|
|
for root, _, files in os.walk(path):
|
|
|
|
res = fnmatch.filter(files, pattern)
|
|
|
|
if res:
|
|
|
|
return os.path.join(root, res[0])
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2020-07-27 02:47:15 -04:00
|
|
|
def rmdir(path, exclude_file_pattern=None):
|
|
|
|
if not exclude_file_pattern:
|
|
|
|
shutil.rmtree(path, ignore_errors=True)
|
|
|
|
return
|
|
|
|
|
|
|
|
for root, dirs, files in os.walk(path, topdown=False):
|
|
|
|
for f in files:
|
|
|
|
if not fnmatch.fnmatch(f, exclude_file_pattern):
|
|
|
|
os.remove(os.path.join(root, f))
|
|
|
|
for d in dirs:
|
|
|
|
try:
|
|
|
|
os.rmdir(os.path.join(root, d))
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
class BuildItem(object):
|
|
|
|
"""
|
|
|
|
Instance of this class represents one build of an application.
|
|
|
|
The parameters which distinguish the build are passed to the constructor.
|
|
|
|
"""
|
2020-04-22 02:49:05 -04:00
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
app_path,
|
|
|
|
work_dir,
|
|
|
|
build_path,
|
|
|
|
build_log_path,
|
|
|
|
target,
|
|
|
|
sdkconfig_path,
|
|
|
|
config_name,
|
|
|
|
build_system,
|
2020-04-23 06:29:37 -04:00
|
|
|
preserve_artifacts,
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
):
|
|
|
|
# These internal variables store the paths with environment variables and placeholders;
|
|
|
|
# Public properties with similar names use the _expand method to get the actual paths.
|
|
|
|
self._app_dir = app_path
|
|
|
|
self._work_dir = work_dir
|
|
|
|
self._build_dir = build_path
|
|
|
|
self._build_log_path = build_log_path
|
|
|
|
|
|
|
|
self.sdkconfig_path = sdkconfig_path
|
|
|
|
self.config_name = config_name
|
|
|
|
self.target = target
|
|
|
|
self.build_system = build_system
|
|
|
|
|
2020-04-23 06:29:37 -04:00
|
|
|
self.preserve = preserve_artifacts
|
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
self._app_name = os.path.basename(os.path.normpath(app_path))
|
2020-07-21 04:00:05 -04:00
|
|
|
self.size_json_fp = None
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
|
|
|
# Some miscellaneous build properties which are set later, at the build stage
|
|
|
|
self.index = None
|
|
|
|
self.verbose = False
|
|
|
|
self.dry_run = False
|
|
|
|
self.keep_going = False
|
|
|
|
|
2020-07-21 04:00:05 -04:00
|
|
|
self.work_path = self.work_dir or self.app_dir
|
|
|
|
if not self.build_dir:
|
2021-01-25 21:49:01 -05:00
|
|
|
self.build_path = os.path.join(self.work_path, 'build')
|
2020-07-21 04:00:05 -04:00
|
|
|
elif os.path.isabs(self.build_dir):
|
|
|
|
self.build_path = self.build_dir
|
|
|
|
else:
|
|
|
|
self.build_path = os.path.normpath(os.path.join(self.work_path, self.build_dir))
|
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
@property
|
|
|
|
def app_dir(self):
|
|
|
|
"""
|
|
|
|
:return: directory of the app
|
|
|
|
"""
|
|
|
|
return self._expand(self._app_dir)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def work_dir(self):
|
|
|
|
"""
|
|
|
|
:return: directory where the app should be copied to, prior to the build. Can be None, which means that the app
|
|
|
|
directory should be used.
|
|
|
|
"""
|
|
|
|
return self._expand(self._work_dir)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def build_dir(self):
|
|
|
|
"""
|
|
|
|
:return: build directory, either relative to the work directory (if relative path is used) or absolute path.
|
|
|
|
"""
|
|
|
|
return self._expand(self._build_dir)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def build_log_path(self):
|
|
|
|
"""
|
|
|
|
:return: path of the build log file
|
|
|
|
"""
|
|
|
|
return self._expand(self._build_log_path)
|
|
|
|
|
|
|
|
def __repr__(self):
|
2021-01-25 21:49:01 -05:00
|
|
|
return '({}) Build app {} for target {}, sdkconfig {} in {}'.format(
|
2020-07-15 12:18:33 -04:00
|
|
|
self.build_system,
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
self.app_dir,
|
|
|
|
self.target,
|
2021-01-25 21:49:01 -05:00
|
|
|
self.sdkconfig_path or '(default)',
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
self.build_dir,
|
|
|
|
)
|
|
|
|
|
|
|
|
def to_json(self): # type: () -> str
|
|
|
|
"""
|
|
|
|
:return: JSON string representing this object
|
|
|
|
"""
|
|
|
|
return self._to_json(self._app_dir, self._work_dir, self._build_dir, self._build_log_path)
|
|
|
|
|
|
|
|
def to_json_expanded(self): # type: () -> str
|
|
|
|
"""
|
|
|
|
:return: JSON string representing this object, with all placeholders in paths expanded
|
|
|
|
"""
|
|
|
|
return self._to_json(self.app_dir, self.work_dir, self.build_dir, self.build_log_path)
|
|
|
|
|
|
|
|
def _to_json(self, app_dir, work_dir, build_dir, build_log_path): # type: (str, str, str, str) -> str
|
|
|
|
"""
|
|
|
|
Internal function, called by to_json and to_json_expanded
|
|
|
|
"""
|
|
|
|
return json.dumps({
|
2021-01-25 21:49:01 -05:00
|
|
|
'build_system': self.build_system,
|
|
|
|
'app_dir': app_dir,
|
|
|
|
'work_dir': work_dir,
|
|
|
|
'build_dir': build_dir,
|
|
|
|
'build_log_path': build_log_path,
|
|
|
|
'sdkconfig': self.sdkconfig_path,
|
|
|
|
'config': self.config_name,
|
|
|
|
'target': self.target,
|
|
|
|
'verbose': self.verbose,
|
|
|
|
'preserve': self.preserve,
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_json(json_str): # type: (typing.Text) -> BuildItem
|
|
|
|
"""
|
|
|
|
:return: Get the BuildItem from a JSON string
|
|
|
|
"""
|
|
|
|
d = json.loads(str(json_str))
|
|
|
|
result = BuildItem(
|
2021-01-25 21:49:01 -05:00
|
|
|
app_path=d['app_dir'],
|
|
|
|
work_dir=d['work_dir'],
|
|
|
|
build_path=d['build_dir'],
|
|
|
|
build_log_path=d['build_log_path'],
|
|
|
|
sdkconfig_path=d['sdkconfig'],
|
|
|
|
config_name=d['config'],
|
|
|
|
target=d['target'],
|
|
|
|
build_system=d['build_system'],
|
|
|
|
preserve_artifacts=d['preserve']
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
)
|
2021-01-25 21:49:01 -05:00
|
|
|
result.verbose = d['verbose']
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
return result
|
|
|
|
|
|
|
|
def _expand(self, path): # type: (str) -> str
|
|
|
|
"""
|
|
|
|
Internal method, expands any of the placeholders in {app,work,build} paths.
|
|
|
|
"""
|
|
|
|
if not path:
|
|
|
|
return path
|
|
|
|
|
|
|
|
if self.index is not None:
|
|
|
|
path = path.replace(INDEX_PLACEHOLDER, str(self.index))
|
|
|
|
path = path.replace(TARGET_PLACEHOLDER, self.target)
|
|
|
|
path = path.replace(NAME_PLACEHOLDER, self._app_name)
|
|
|
|
if (FULL_NAME_PLACEHOLDER in path): # to avoid recursion to the call to app_dir in the next line:
|
2021-01-25 21:49:01 -05:00
|
|
|
path = path.replace(FULL_NAME_PLACEHOLDER, self.app_dir.replace(os.path.sep, '_'))
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
wildcard_pos = path.find(WILDCARD_PLACEHOLDER)
|
|
|
|
if wildcard_pos != -1:
|
|
|
|
if self.config_name:
|
|
|
|
# if config name is defined, put it in place of the placeholder
|
|
|
|
path = path.replace(WILDCARD_PLACEHOLDER, self.config_name)
|
|
|
|
else:
|
|
|
|
# otherwise, remove the placeholder and one character on the left
|
|
|
|
# (which is usually an underscore, dash, or other delimiter)
|
|
|
|
left_of_wildcard = max(0, wildcard_pos - 1)
|
|
|
|
right_of_wildcard = wildcard_pos + len(WILDCARD_PLACEHOLDER)
|
|
|
|
path = path[0:left_of_wildcard] + path[right_of_wildcard:]
|
|
|
|
path = os.path.expandvars(path)
|
|
|
|
return path
|
|
|
|
|
2020-07-21 04:00:05 -04:00
|
|
|
def get_size_json_fp(self):
|
|
|
|
if self.size_json_fp and os.path.exists(self.size_json_fp):
|
|
|
|
return self.size_json_fp
|
|
|
|
|
|
|
|
assert os.path.exists(self.build_path)
|
|
|
|
assert os.path.exists(self.work_path)
|
|
|
|
|
|
|
|
map_file = find_first_match('*.map', self.build_path)
|
|
|
|
if not map_file:
|
|
|
|
raise ValueError('.map file not found under "{}"'.format(self.build_path))
|
|
|
|
|
2020-07-27 02:47:15 -04:00
|
|
|
size_json_fp = os.path.join(self.build_path, SIZE_JSON_FN)
|
2020-07-21 04:00:05 -04:00
|
|
|
idf_size_args = [
|
|
|
|
sys.executable,
|
|
|
|
IDF_SIZE_PY,
|
|
|
|
'--json',
|
|
|
|
'-o', size_json_fp,
|
|
|
|
map_file
|
|
|
|
]
|
|
|
|
subprocess.check_call(idf_size_args)
|
|
|
|
return size_json_fp
|
|
|
|
|
|
|
|
def write_size_info(self, size_info_fs):
|
|
|
|
if not self.size_json_fp or (not os.path.exists(self.size_json_fp)):
|
|
|
|
raise OSError('Run get_size_json_fp() for app {} after built binary'.format(self.app_dir))
|
|
|
|
size_info_dict = {
|
|
|
|
'app_name': self._app_name,
|
|
|
|
'config_name': self.config_name,
|
|
|
|
'target': self.target,
|
|
|
|
'path': self.size_json_fp,
|
|
|
|
}
|
|
|
|
size_info_fs.write(json.dumps(size_info_dict) + '\n')
|
|
|
|
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
2020-12-07 22:54:17 -05:00
|
|
|
class BuildSystem:
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
"""
|
|
|
|
Class representing a build system.
|
|
|
|
Derived classes implement the methods below.
|
|
|
|
Objects of these classes aren't instantiated, instead the class (type object) is used.
|
|
|
|
"""
|
2021-01-25 21:49:01 -05:00
|
|
|
NAME = 'undefined'
|
2020-11-27 05:06:36 -05:00
|
|
|
SUPPORTED_TARGETS_REGEX = re.compile(r'Supported [Tt]argets((?:[ |]+(?:[0-9a-zA-Z\-]+))+)')
|
2020-04-22 02:49:05 -04:00
|
|
|
|
2020-12-07 22:54:17 -05:00
|
|
|
FORMAL_TO_USUAL = {
|
|
|
|
'ESP32': 'esp32',
|
|
|
|
'ESP32-S2': 'esp32s2',
|
|
|
|
'ESP32-S3': 'esp32s3',
|
2020-12-28 21:00:45 -05:00
|
|
|
'ESP32-C3': 'esp32c3',
|
2021-06-08 04:11:35 -04:00
|
|
|
'ESP32-H2': 'esp32h2',
|
2022-01-17 21:32:56 -05:00
|
|
|
'ESP32-C2': 'esp32c2',
|
2020-11-27 05:06:36 -05:00
|
|
|
'Linux': 'linux',
|
2020-12-07 22:54:17 -05:00
|
|
|
}
|
|
|
|
|
2022-01-12 07:29:37 -05:00
|
|
|
# ESP32H2-TODO: IDF-4559
|
|
|
|
# Build only apps who has ESP32-H2 in the README.md supported targets table.
|
2022-01-17 21:32:56 -05:00
|
|
|
DEFAULT_TARGETS = ['esp32', 'esp32s2', 'esp32s3', 'esp32c3', 'esp32c2', 'linux']
|
2022-01-12 07:29:37 -05:00
|
|
|
|
2020-05-05 22:40:23 -04:00
|
|
|
@classmethod
|
|
|
|
def build_prepare(cls, build_item):
|
2020-04-22 02:49:05 -04:00
|
|
|
app_path = build_item.app_dir
|
2020-07-21 04:00:05 -04:00
|
|
|
work_path = build_item.work_path
|
|
|
|
build_path = build_item.build_path
|
2020-04-22 02:49:05 -04:00
|
|
|
|
|
|
|
if work_path != app_path:
|
|
|
|
if os.path.exists(work_path):
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Work directory {} exists, removing'.format(work_path))
|
2020-04-22 02:49:05 -04:00
|
|
|
if not build_item.dry_run:
|
|
|
|
shutil.rmtree(work_path)
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Copying app from {} to {}'.format(app_path, work_path))
|
2020-04-22 02:49:05 -04:00
|
|
|
if not build_item.dry_run:
|
|
|
|
shutil.copytree(app_path, work_path)
|
|
|
|
|
|
|
|
if os.path.exists(build_path):
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Build directory {} exists, removing'.format(build_path))
|
2020-04-22 02:49:05 -04:00
|
|
|
if not build_item.dry_run:
|
|
|
|
shutil.rmtree(build_path)
|
|
|
|
|
|
|
|
if not build_item.dry_run:
|
|
|
|
os.makedirs(build_path)
|
|
|
|
|
|
|
|
# Prepare the sdkconfig file, from the contents of sdkconfig.defaults (if exists) and the contents of
|
|
|
|
# build_info.sdkconfig_path, i.e. the config-specific sdkconfig file.
|
|
|
|
#
|
|
|
|
# Note: the build system supports taking multiple sdkconfig.defaults files via SDKCONFIG_DEFAULTS
|
|
|
|
# CMake variable. However here we do this manually to perform environment variable expansion in the
|
|
|
|
# sdkconfig files.
|
2021-01-25 21:49:01 -05:00
|
|
|
sdkconfig_defaults_list = ['sdkconfig.defaults', 'sdkconfig.defaults.' + build_item.target]
|
2020-04-22 02:49:05 -04:00
|
|
|
if build_item.sdkconfig_path:
|
|
|
|
sdkconfig_defaults_list.append(build_item.sdkconfig_path)
|
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
sdkconfig_file = os.path.join(work_path, 'sdkconfig')
|
2020-04-22 02:49:05 -04:00
|
|
|
if os.path.exists(sdkconfig_file):
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Removing sdkconfig file: {}'.format(sdkconfig_file))
|
2020-04-22 02:49:05 -04:00
|
|
|
if not build_item.dry_run:
|
|
|
|
os.unlink(sdkconfig_file)
|
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Creating sdkconfig file: {}'.format(sdkconfig_file))
|
2020-05-05 22:40:23 -04:00
|
|
|
extra_cmakecache_items = {}
|
2020-04-22 02:49:05 -04:00
|
|
|
if not build_item.dry_run:
|
2021-01-25 21:49:01 -05:00
|
|
|
with open(sdkconfig_file, 'w') as f_out:
|
2020-04-22 02:49:05 -04:00
|
|
|
for sdkconfig_name in sdkconfig_defaults_list:
|
|
|
|
sdkconfig_path = os.path.join(work_path, sdkconfig_name)
|
|
|
|
if not sdkconfig_path or not os.path.exists(sdkconfig_path):
|
|
|
|
continue
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Appending {} to sdkconfig'.format(sdkconfig_name))
|
|
|
|
with open(sdkconfig_path, 'r') as f_in:
|
2020-04-22 02:49:05 -04:00
|
|
|
for line in f_in:
|
2021-01-25 21:49:01 -05:00
|
|
|
if not line.endswith('\n'):
|
|
|
|
line += '\n'
|
2020-05-05 22:40:23 -04:00
|
|
|
if cls.NAME == 'cmake':
|
|
|
|
m = SDKCONFIG_LINE_REGEX.match(line)
|
2020-06-26 06:12:43 -04:00
|
|
|
key = m.group(1) if m else None
|
|
|
|
if key in SDKCONFIG_TEST_OPTS:
|
|
|
|
extra_cmakecache_items[key] = m.group(2)
|
|
|
|
continue
|
|
|
|
if key in SDKCONFIG_IGNORE_OPTS:
|
2020-05-05 22:40:23 -04:00
|
|
|
continue
|
2020-04-22 02:49:05 -04:00
|
|
|
f_out.write(os.path.expandvars(line))
|
|
|
|
else:
|
|
|
|
for sdkconfig_name in sdkconfig_defaults_list:
|
|
|
|
sdkconfig_path = os.path.join(app_path, sdkconfig_name)
|
|
|
|
if not sdkconfig_path:
|
|
|
|
continue
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Considering sdkconfig {}'.format(sdkconfig_path))
|
2020-04-22 02:49:05 -04:00
|
|
|
if not os.path.exists(sdkconfig_path):
|
|
|
|
continue
|
2021-01-25 21:49:01 -05:00
|
|
|
logging.debug('Appending {} to sdkconfig'.format(sdkconfig_name))
|
2020-04-22 02:49:05 -04:00
|
|
|
|
|
|
|
# The preparation of build is finished. Implement the build part in sub classes.
|
2020-05-05 22:40:23 -04:00
|
|
|
if cls.NAME == 'cmake':
|
|
|
|
return build_path, work_path, extra_cmakecache_items
|
|
|
|
else:
|
|
|
|
return build_path, work_path
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
|
|
|
@staticmethod
|
2020-04-22 02:49:05 -04:00
|
|
|
@abstractmethod
|
|
|
|
def build(build_item):
|
|
|
|
pass
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
|
|
|
@staticmethod
|
2020-04-22 02:49:05 -04:00
|
|
|
@abstractmethod
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
def is_app(path):
|
2020-04-22 02:49:05 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _read_readme(app_path):
|
|
|
|
# Markdown supported targets should be:
|
|
|
|
# e.g. | Supported Targets | ESP32 |
|
|
|
|
# | ----------------- | ----- |
|
|
|
|
# reStructuredText supported targets should be:
|
|
|
|
# e.g. ================= =====
|
|
|
|
# Supported Targets ESP32
|
|
|
|
# ================= =====
|
|
|
|
def get_md_or_rst(app_path):
|
|
|
|
readme_path = os.path.join(app_path, 'README.md')
|
|
|
|
if not os.path.exists(readme_path):
|
|
|
|
readme_path = os.path.join(app_path, 'README.rst')
|
|
|
|
if not os.path.exists(readme_path):
|
|
|
|
return None
|
|
|
|
return readme_path
|
|
|
|
|
|
|
|
readme_path = get_md_or_rst(app_path)
|
|
|
|
# Handle sub apps situation, e.g. master-slave
|
|
|
|
if not readme_path:
|
|
|
|
readme_path = get_md_or_rst(os.path.dirname(app_path))
|
|
|
|
if not readme_path:
|
|
|
|
return None
|
2021-01-25 21:49:01 -05:00
|
|
|
with open(readme_path, 'r', encoding='utf8') as readme_file:
|
2020-04-22 02:49:05 -04:00
|
|
|
return readme_file.read()
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
2020-12-07 22:54:17 -05:00
|
|
|
@classmethod
|
|
|
|
def _supported_targets(cls, app_path):
|
|
|
|
readme_file_content = BuildSystem._read_readme(app_path)
|
|
|
|
if not readme_file_content:
|
2022-01-12 07:29:37 -05:00
|
|
|
return cls.DEFAULT_TARGETS # supports all default targets if no readme found
|
2020-12-07 22:54:17 -05:00
|
|
|
match = re.findall(BuildSystem.SUPPORTED_TARGETS_REGEX, readme_file_content)
|
|
|
|
if not match:
|
2022-01-12 07:29:37 -05:00
|
|
|
return cls.DEFAULT_TARGETS # supports all default targets if no such header in readme
|
2020-12-07 22:54:17 -05:00
|
|
|
if len(match) > 1:
|
|
|
|
raise NotImplementedError("Can't determine the value of SUPPORTED_TARGETS in {}".format(app_path))
|
|
|
|
support_str = match[0].strip()
|
|
|
|
|
|
|
|
targets = []
|
|
|
|
for part in support_str.split('|'):
|
|
|
|
for inner in part.split(' '):
|
|
|
|
inner = inner.strip()
|
|
|
|
if not inner:
|
|
|
|
continue
|
|
|
|
elif inner in cls.FORMAL_TO_USUAL:
|
|
|
|
targets.append(cls.FORMAL_TO_USUAL[inner])
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("Can't recognize value of target {} in {}, now we only support '{}'"
|
|
|
|
.format(inner, app_path, ', '.join(cls.FORMAL_TO_USUAL.keys())))
|
|
|
|
return targets
|
|
|
|
|
|
|
|
@classmethod
|
2020-06-19 06:58:03 -04:00
|
|
|
@abstractmethod
|
2020-12-07 22:54:17 -05:00
|
|
|
def supported_targets(cls, app_path):
|
2020-06-19 06:58:03 -04:00
|
|
|
pass
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
class BuildError(RuntimeError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def setup_logging(args):
|
|
|
|
"""
|
|
|
|
Configure logging module according to the number of '--verbose'/'-v' arguments and the --log-file argument.
|
|
|
|
:param args: namespace obtained from argparse
|
|
|
|
"""
|
|
|
|
if not args.verbose:
|
|
|
|
log_level = logging.WARNING
|
|
|
|
elif args.verbose == 1:
|
|
|
|
log_level = logging.INFO
|
|
|
|
else:
|
|
|
|
log_level = logging.DEBUG
|
|
|
|
|
|
|
|
logging.basicConfig(
|
2021-01-25 21:49:01 -05:00
|
|
|
format='%(levelname)s: %(message)s',
|
2021-11-19 03:11:47 -05:00
|
|
|
stream=getattr(args, 'log_file', None) or sys.stderr,
|
tools: add {find,build}_apps.py, scripts to build multiple apps
This commit adds a pair of scripts, find_apps.py and build_apps.py.
These scripts are intended to be used in various CI jobs, building
multiple applications with different configurations and targets.
The first script, find_apps.py, is used to prepare the list of builds:
1. It finds apps for the given build system.
2. For each app, it finds configurations (sdkconfig files) which need
to be built.
3. It filters out the apps and configurations which are not compatible
with the given target.
4. It outputs the list of builds into stdout or a file. Currently the
format is a list of lines, each line a JSON string. In the future,
the tool can be updated to output YAML files.
The lists of builds can be concatenated and processed with standard
command line tools, like sed.
The second script, build_apps.py, executes the builds from the list.
It can execute a subset of builds based on --parallel-count and
--parallel-index arguments.
These two scripts are intended to replace build_examples_make,
build_examples_cmake, and the custom unit-test-app logic (in the
Makefile and idf_ext.py).
Closes IDF-641
2019-09-11 05:23:10 -04:00
|
|
|
level=log_level,
|
|
|
|
)
|