scripts/run-config: Add --build-type commandline option

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2019-09-06 14:24:04 +01:00
parent 7ed4bde848
commit 21ebf7df51

View File

@ -36,6 +36,9 @@ parser.add_argument('-r', '--results-dir',
parser.add_argument('-u', '--build-url', parser.add_argument('-u', '--build-url',
action='store', action='store',
help="URL back to this build (for the error reporting system)") help="URL back to this build (for the error reporting system)")
parser.add_argument('--build-type',
action='store',
help="the type of build being triggered (full or quick)")
parser.add_argument('-t', '--test', parser.add_argument('-t', '--test',
action='store_true', action='store_true',
default=False, default=False,