diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2021-04-09 07:58:04 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-04-09 16:50:40 +0200 |
commit | 1be69f3df0b47f287eae1830984105096a6afaed (patch) | |
tree | 8e615fa8f9adc3b8a68849ed06736bfd2e5ade66 | |
parent | 6420fe4d87fedcc0fbef3e5719c849dd5e4f5a43 (diff) |
SPEC-3414: Permit to choose file server ressource
Permit to choose "file server ressource" path.
Change-Id: I5e24972ada0651c3021f66179e9b4b292730a460
Bug-AGL: SPEC-3414
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
-rwxr-xr-x | utils/agl-publish.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/agl-publish.py b/utils/agl-publish.py index 2128c53..93dc081 100755 --- a/utils/agl-publish.py +++ b/utils/agl-publish.py @@ -13,6 +13,7 @@ parser.add_argument('--branch', action='store', help="branch of the build", requ parser.add_argument('--commit', action='store', help="commit of the build", required=True) parser.add_argument('--build_version', action='store', help="build_version of the build", required=True) parser.add_argument('--kernel_version', action='store', help="kernel_version of the build", default=None) +parser.add_argument('--fsr', action='store', help="File Server Resource path", default=None) parser.add_argument('--machine', action='store', help="machine of the build", required=True) parser.add_argument('--api', action='store', help="URL to kernelci backend API", required=True) args = parser.parse_args() @@ -52,7 +53,10 @@ else: bmeta["git_describe_v"] = args.branch bmeta["job"] = "AGL-yocto" -fsr = "AGL-yocto/%s/%s/%s/" % (args.branch, args.build_version, args.machine) +if args.fsr: + fsr = args.fsr +else: + fsr = "AGL-yocto/%s/%s/%s/" % (args.branch, args.build_version, args.machine) bmeta["file_server_resource"] = fsr print(bmeta) |