Lines Matching full:repo
36 # frontend repo, no need to update afe.
91 """This function cleans the current repo then verifies that it is valid.
93 @raises DirtyTreeException if the repo is still not clean.
94 @raises subprocess.CalledProcessError on a repo command failure.
98 out = subprocess.check_output(['repo', 'status'], stderr=subprocess.STDOUT)
102 raise DirtyTreeException('%s repo not clean: %s' % (HOSTNAME, out))
116 """This function collects the versions of all git repos in the general repo.
119 @raises subprocess.CalledProcessError on a repo command failure.
121 cmd = ['repo', 'forall', '-p', '-c', 'pwd && git log -1 --format=%h']
164 for cmd, repo in COMMANDS_TO_REPOS_DICT.iteritems():
167 '%s/%s' % (common.autotest_dir, repo)])
173 """Perform a repo sync.
177 @raises subprocess.CalledProcessError on a repo command failure.
179 subprocess.check_output(['repo', 'sync', '--force-sync'])
344 @param cmds_skip: cmds no need to run since the corresponding repo/file
488 """Update ~chromeos-test/chromiumos repo."""
491 ret = subprocess.call(['repo', 'sync', '--force-sync'],
503 # the 'repo' command from `verify_repo_clean()`.
525 print('Updating Repo.')
532 # If the corresponding repo/file not change, no need to run the cmd.