1
0
Fork 0

Ignore changes in 'utils'

Blaze build check should be done via separate pipeline

For #325
This commit is contained in:
Mikhail Goncharov 2021-07-23 09:35:22 +02:00
parent 1b116862e6
commit c1b5c95071

View file

@ -138,7 +138,9 @@ class ChooseProjects:
unmapped_changes = False
for changed_file in changed_files:
project = changed_file.split('/', maxsplit=1)
if project is None or project[0] not in self.all_projects:
if project == 'utils':
continue
if (project is None) or (project[0] not in self.all_projects):
unmapped_changes = True
logging.warning('Could not map file to project: {}'.format(changed_file))
else: