mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: Upload report about modified files and components to s3 bucket
This commit is contained in:
parent
8ce0b8bf73
commit
8dcf3e5f80
@ -186,6 +186,7 @@ pipeline_variables:
|
||||
echo "BUILD_AND_TEST_ALL_APPS=1" >> pipeline.env
|
||||
fi
|
||||
- cat pipeline.env
|
||||
- python tools/ci/artifacts_handler.py upload --type modified_files_and_components_report
|
||||
artifacts:
|
||||
reports:
|
||||
dotenv: pipeline.env
|
||||
|
@ -22,6 +22,7 @@ class ArtifactType(str, Enum):
|
||||
LOGS = 'logs'
|
||||
SIZE_REPORTS = 'size_reports'
|
||||
JUNIT_REPORTS = 'junit_reports'
|
||||
MODIFIED_FILES_AND_COMPONENTS_REPORT = 'modified_files_and_components_report'
|
||||
|
||||
|
||||
TYPE_PATTERNS_DICT = {
|
||||
@ -52,6 +53,9 @@ TYPE_PATTERNS_DICT = {
|
||||
ArtifactType.JUNIT_REPORTS: [
|
||||
'XUNIT_RESULT.xml',
|
||||
],
|
||||
ArtifactType.MODIFIED_FILES_AND_COMPONENTS_REPORT: [
|
||||
'pipeline.env',
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user