Format tags_to_ignore

This commit is contained in:
Michael Kirk 2018-11-09 16:02:39 -06:00
parent 96c546d6b7
commit 7b421ad4d4
1 changed files with 17 additions and 1 deletions

View File

@ -39,7 +39,23 @@ def main():
# Don't reverse integrate tags for adhoc builds
tags_of_concern = [tag for tag in tags_of_concern if "adhoc" not in tag]
tags_to_ignore = ['2.29.0.11', '2.29.0.7', '2.29.0.8', '2.29.0.9', '2.23.3.0', '2.23.3.1', '2.26.0.15', '2.26.0.16', '2.26.0.6', '2.26.0.7', '3.0', '3.0.1', '3.0.2', '2.30.0.0', '2.30.0.1']
tags_to_ignore = [
'2.23.3.0',
'2.23.3.1',
'2.26.0.6',
'2.26.0.7',
'2.26.0.15',
'2.26.0.16',
'2.29.0.7',
'2.29.0.8',
'2.29.0.9',
'2.29.0.11',
'2.30.0.0',
'2.30.0.1',
'3.0',
'3.0.1',
'3.0.2',
]
tags_of_concern = [tag for tag in tags_of_concern if tag not in tags_to_ignore]
if len(tags_of_concern) > 0: