Home | History | Annotate | Download | only in helper

Lines Matching refs:new_job

21     new_job = jobs.CreateLinuxJob('CheckoutCrosstool(%s)' % target, command)
22 checkout_dir_dep = job.FolderDependency(new_job,
25 new_job, os.path.join(self.commands.buildit_path, target), 'manifests')
26 return new_job, checkout_dir_dep, manifests_dir_dep
30 new_job = jobs.CreateLinuxJob('BuildRelease(%s)' % target, command)
31 new_job.DependsOnFolder(checkout_dir)
32 build_tree_dep = job.FolderDependency(new_job,
34 return new_job, build_tree_dep
38 new_job = jobs.CreateLinuxJob('RunTests(%s, %s, %s)' %
40 new_job.DependsOnFolder(checkout_dir)
41 new_job.DependsOnFolder(build_tree_dir)
43 new_job, self.commands.dejagnu_output_path, board)
44 return new_job, testrun_dir_dep
48 new_job = jobs.CreateLinuxJob('GenerateReport(%s)' % target, command)
49 new_job.DependsOnFolder(manifests_dir)
51 new_job.DependsOnFolder(testrun_dir)
52 return new_job