setup-config: add a 5th parameter to take the repo name

This will likely be useful in several places and is require for buildhistory
configuration.

Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
Joshua Lock 2018-01-15 16:45:31 +00:00
parent 22f5aea386
commit bb3a281db6

View File

@ -6,6 +6,7 @@
# $2 - The autobuilder step number (a given target can run multiple steps with different configurations)
# $3 - The target build directory to configure
# $4 - The poky branch name the build is running on
# $5 - The name of the repository the build is running on
#
import json
@ -14,8 +15,8 @@ import sys
import subprocess
import errno
if len(sys.argv) != 5:
print("Incorrect number of parameters, please call as %s <nightly-target> <stepnumber> <target-builddir>")
if len(sys.argv) != 6:
print("Incorrect number of parameters, please call as %s <nightly-target> <stepnumber> <target-builddir> <branch-name> <repo-name>")
sys.exit(1)
# Strip off "nightly-"
@ -23,6 +24,7 @@ target = sys.argv[1][8:]
stepnum = sys.argv[2]
builddir = sys.argv[3]
branchname = sys.argv[4]
reponame = sys.argv[5]
scriptsdir = os.path.dirname(os.path.realpath(__file__))