mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-22 23:21:31 +00:00
buildman: Document the members of BuilderJob
This class has a few more members now. Add documentation for them and fix a nit in the 'commits' comment. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ed49ea90b7
commit
e9fbbf633e
1 changed files with 5 additions and 1 deletions
|
@ -39,11 +39,15 @@ class BuilderJob:
|
||||||
|
|
||||||
Members:
|
Members:
|
||||||
board: Board object to build
|
board: Board object to build
|
||||||
commits: List of commit options to build.
|
commits: List of Commit objects to build
|
||||||
|
keep_outputs: True to save build output files
|
||||||
|
step: 1 to process every commit, n to process every nth commit
|
||||||
"""
|
"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.board = None
|
self.board = None
|
||||||
self.commits = []
|
self.commits = []
|
||||||
|
self.keep_outputs = False
|
||||||
|
self.step = 1
|
||||||
|
|
||||||
|
|
||||||
class ResultThread(threading.Thread):
|
class ResultThread(threading.Thread):
|
||||||
|
|
Loading…
Add table
Reference in a new issue