Ignore changes in 'utils'
Blaze build check should be done via separate pipeline For #325
This commit is contained in:
parent
1b116862e6
commit
c1b5c95071
1 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue