13 lines
303 B
Python
13 lines
303 B
Python
class BuildJobResult(object):
|
|
""" Build job result enum """
|
|
INCOMPLETE = 'incomplete'
|
|
COMPLETE = 'complete'
|
|
ERROR = 'error'
|
|
|
|
|
|
class BuildServerStatus(object):
|
|
""" Build server status enum """
|
|
STARTING = 'starting'
|
|
RUNNING = 'running'
|
|
SHUTDOWN = 'shutting_down'
|
|
EXCEPTION = 'exception'
|