You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
409 B
11 lines
409 B
# Copyright 2010 Google Inc. All Rights Reserved. |
|
|
|
from automation.common import job |
|
from automation.common import machine |
|
|
|
|
|
def CreateLinuxJob(label, command, lock=False, timeout=4 * 60 * 60): |
|
to_return = job.Job(label, command, timeout) |
|
to_return.DependsOnMachine(machine.MachineSpecification(os='linux', |
|
lock_required=lock)) |
|
return to_return
|
|
|