Home | History | Annotate | Download | only in bots

Lines Matching refs:jobs

66 	// Name prefix for upload jobs.
84 // Top-level list of all jobs to run at each commit; loaded from
85 // jobs.json.
86 JOBS []string
223 jobsFile = flag.String("jobs", "", "JSON file containing jobs to run.")
902 // is listed in JOBS.
903 if !util.In(name, JOBS) {
904 glog.Fatalf("Job %q is missing from the JOBS list!", name)
1008 // We have some jobs that are FYI (e.g. Debug-CanvasKit)
1263 // process generates tasks and jobs for the given job name.
1265 var priority float64 // Leave as default for most jobs.
1447 // Load the jobs from a JSON file.
1448 loadJson(jobsFile, path.Join(infraBots, "jobs.json"), &JOBS)
1463 // Create Tasks and Jobs.
1464 for _, name := range JOBS {