Lines Matching +full:launch +full:- +full:status
3 # Use of this source code is governed by a BSD-style license that can be
21 # Used to re-try for 'llvm_bisection.py' to attempt to launch more tryjobs.
24 # Wait time to then poll each tryjob whose 'status' value is 'pending'.
27 # The number of attempts for 'llvm_bisection.py' to launch more tryjobs.
34 # The limit for updating all tryjobs whose 'status' is 'pending'.
64 # Calls 'cros buildresult' to get the status of the tryjob.
70 "--buildbucket-id",
72 "--report",
77 encoding="utf-8",
86 build_result = str(tryjob_content["%d" % buildbucket_id]["status"])
116 # Update the status of existing tryjobs
119 with open(args_output.last_tested, encoding="utf-8") as json_file:
123 '\nAttempting to update all tryjobs whose "status" is '
126 print("-" * 40)
131 tryjob["status"]
134 status = GetBuildResult(
137 if status:
138 tryjob["status"] = status
142 print("-" * 40)
149 delta_time = time.time() - update_start_time
152 # Something is wrong with updating the tryjobs's 'status'
156 print("-" * 40)
163 with open(temp_filename, "w", encoding="utf-8") as temp_file:
169 # Launch more tryjobs.
175 print("\nAttempting to launch more tryjobs if possible:")
176 print("-" * 40)
180 print("-" * 40)
191 print("-" * 40)
193 # Exceeded the number of times to launch more tryjobs.
197 num_retries_left = BISECTION_ATTEMPTS - cur_try