ci: Upload artifacts of target stage jobs to s3 bucket

This commit is contained in:
Aleksei Apaseev
2023-10-27 17:32:47 +08:00
committed by Fu Hanxi
parent 651f60e663
commit 911ad39808
2 changed files with 8 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ class ArtifactType(str, Enum):
LOGS = 'logs'
SIZE_REPORTS = 'size_reports'
JUNIT_REPORTS = 'junit_reports'
TYPE_PATTERNS_DICT = {
@@ -48,6 +49,9 @@ TYPE_PATTERNS_DICT = {
'**/build*/size.json',
'size_info.txt',
],
ArtifactType.JUNIT_REPORTS: [
'XUNIT_RESULT.xml',
],
}