Skip to content
Snippets Groups Projects
Commit 5e3d69b2 authored by felmer's avatar felmer
Browse files

SSDM-10191: allow to specify CI host as CLI argument

parent f6871211
No related branches found
No related tags found
No related merge requests found
...@@ -5,8 +5,8 @@ import sys ...@@ -5,8 +5,8 @@ import sys
import os.path import os.path
import time import time
# Base URL of the CI server which hosts the artifacts. # Default base URL of the CI server which hosts the artifacts.
CI_BASE_URL = 'http://bs-ci01.ethz.ch:8090' ci_base_url = 'http://bs-ci01.ethz.ch:8090'
reuseRepository = False reuseRepository = False
devMode = False devMode = False
...@@ -20,9 +20,12 @@ if len(sys.argv) > 1: ...@@ -20,9 +20,12 @@ if len(sys.argv) > 1:
devMode = True devMode = True
elif firstArgument == '-d': elif firstArgument == '-d':
devMode = True devMode = True
elif firstArgument == '-s':
ci_base_url = sys.argv[2]
elif firstArgument == '-h': elif firstArgument == '-h':
print("Usage: %s [-h|-r|-d|-rd]\n-h: prints this help\n-r: reuses artifact repository\n" print(("Usage: %s [-h|-r|-d|-rd|-s <ci server>]\n-h: prints this help\n-r: reuses artifact repository\n"
+ "-d: developing mode\n-rd: both options" % os.path.basename(cmd)) + "-d: developing mode\n-rd: both options\n"
+ "-s <ci server>: option for CI server host name") % os.path.basename(cmd))
exit(1) exit(1)
else: else:
print("Unknown option: %s. Use option '-h' to see usage." % firstArgument) print("Unknown option: %s. Use option '-h' to see usage." % firstArgument)
...@@ -34,6 +37,6 @@ sys.path.append("%s/sourceTest" % dirname) ...@@ -34,6 +37,6 @@ sys.path.append("%s/sourceTest" % dirname)
from systemtest.artifactrepository import JenkinsArtifactRepository from systemtest.artifactrepository import JenkinsArtifactRepository
REPOSITORY = JenkinsArtifactRepository(CI_BASE_URL, "%s/targets/artifact-repository" % dirname) REPOSITORY = JenkinsArtifactRepository(ci_base_url, "%s/targets/artifact-repository" % dirname)
if not reuseRepository: if not reuseRepository:
REPOSITORY.clear() REPOSITORY.clear()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment