Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
5e3d69b2
Commit
5e3d69b2
authored
4 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
integration-tests/settings.py
+8
-5
8 additions, 5 deletions
integration-tests/settings.py
with
8 additions
and
5 deletions
integration-tests/settings.py
+
8
−
5
View file @
5e3d69b2
...
@@ -5,8 +5,8 @@ import sys
...
@@ -5,8 +5,8 @@ import sys
import
os.path
import
os.path
import
time
import
time
#
B
ase URL of the CI server which hosts the artifacts.
#
Default b
ase 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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment