Lines Matching full:branches
56 branches = git_execute(git_working_dir, ['branch',
60 branches = branches.splitlines()
61 return map(str.strip, branches)
63 def is_lkgr(branches): argument
64 return 'remotes/origin/lkgr' in branches
66 def get_first_canary(branches): argument
67 canaries = ([currentBranch for currentBranch in branches if
74 def get_first_v8_version(branches): argument
76 versions = filter(lambda branch: version_re.match(branch), branches)
88 branches = get_branches_for_commit(git_working_dir, hash_to_search)
89 print('Is LKGR: ' + str(is_lkgr(branches)))
90 print('Is on Canary: ' + str(get_first_canary(branches)))
91 print('First V8 branch: ' + str(get_first_v8_version(branches)) + \