Lines Matching refs:action

90                  full_gcc, action, shallow=False):  argument
113 if action not in ('checkout', 'list-compilers', 'list-glibcs'):
476 def component_builddir(self, action, config, component, subconfig=None): argument
481 return os.path.join(self.builddir, action, component)
483 return os.path.join(self.builddir, action, config, component)
486 return os.path.join(self.builddir, action, config, component,
505 def run_builds(self, action, configs): argument
507 if action == 'checkout':
510 if action == 'bot-cycle':
516 if action == 'bot':
522 if action in ('host-libraries', 'list-compilers',
524 print('error: configurations specified for ' + action)
526 if action == 'list-compilers':
530 if action == 'list-glibcs':
535 self.clear_last_build_state(action)
537 if action == 'host-libraries':
542 elif action == 'compilers':
553 if action == 'update-syscalls':
571 self.update_build_state(action, build_time, build_versions)
1017 def clear_last_build_state(self, action): argument
1023 self.build_state[action]['build-time'] = ''
1024 self.build_state[action]['build-versions'] = {}
1027 def update_build_state(self, action, build_time, build_versions): argument
1030 self.build_state[action]['build-time'] = str(build_time)
1031 self.build_state[action]['build-versions'] = build_versions
1042 old_build_results = self.build_state[action]['build-results']
1043 self.build_state[action]['build-results'] = build_results
1057 self.build_state[action]['result-changes'] = result_changes
1058 old_ever_passed = {t for t in self.build_state[action]['ever-passed']
1061 self.build_state[action]['ever-passed'] = sorted(old_ever_passed |
1070 def part_build_old(self, action, delay): argument
1073 old_time_str = self.build_state[action]['build-time']
1143 def bot_build_mail(self, action, build_time): argument
1156 {'action': action,
1158 results = self.build_state[action]['build-results']
1159 changes = self.build_state[action]['result-changes']
1160 ever_passed = set(self.build_state[action]['ever-passed'])
1161 versions = self.build_state[action]['build-versions']
1210 def bot_run_self(self, opts, action, check=True): argument
1217 cmd.extend([self.topdir, action])
1837 parser.add_argument('--replace-sources', action='store_true',
1840 parser.add_argument('--strip', action='store_true',
1842 parser.add_argument('--full-gcc', action='store_true',
1844 parser.add_argument('--shallow', action='store_true',
1866 opts.strip, opts.full_gcc, opts.action,
1868 ctx.run_builds(opts.action, opts.configs)