Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
canghaiwuhen
OpenXG-RAN
Commits
d8864ab2
Commit
d8864ab2
authored
Sep 27, 2019
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI dumy
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
69aef468
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
ci-scripts/Jenkinsfile-tmp-full-ran
ci-scripts/Jenkinsfile-tmp-full-ran
+23
-1
No files found.
ci-scripts/Jenkinsfile-tmp-full-ran
View file @
d8864ab2
...
@@ -54,6 +54,8 @@ def eNB_CommitID
...
@@ -54,6 +54,8 @@ def eNB_CommitID
def
eNB_AllowMergeRequestProcess
=
false
def
eNB_AllowMergeRequestProcess
=
false
def
eNB_TargetBranch
def
eNB_TargetBranch
def
doEpcLogCollection
=
true
pipeline
{
pipeline
{
agent
{
agent
{
label
pythonExecutor
label
pythonExecutor
...
@@ -61,7 +63,7 @@ pipeline {
...
@@ -61,7 +63,7 @@ pipeline {
options
{
options
{
disableConcurrentBuilds
()
disableConcurrentBuilds
()
ansiColor
(
'xterm'
)
ansiColor
(
'xterm'
)
lock
(
extra:
[[
resource:
ciSmartPhone
Resource
]],
resource:
ciSmartPhoneResource
)
lock
(
extra:
[[
resource:
oaiUE
Resource
]],
resource:
ciSmartPhoneResource
)
}
}
stages
{
stages
{
...
@@ -139,6 +141,11 @@ pipeline {
...
@@ -139,6 +141,11 @@ pipeline {
if
(
params
.
EPC_IPAddress
==
null
)
{
if
(
params
.
EPC_IPAddress
==
null
)
{
allParametersPresent
=
false
allParametersPresent
=
false
}
else
{
if
(
params
.
EPC_IPAddress
==
"none"
)
{
doEpcLogCollection
=
false
echo
"No EPC collections (ping/iperf/hss/mme/spgw)"
}
}
}
if
(
params
.
EPC_Type
==
null
)
{
if
(
params
.
EPC_Type
==
null
)
{
allParametersPresent
=
false
allParametersPresent
=
false
...
@@ -299,6 +306,9 @@ pipeline {
...
@@ -299,6 +306,9 @@ pipeline {
}
}
}
}
stage
(
'Log Collection (Ping)'
)
{
stage
(
'Log Collection (Ping)'
)
{
when
{
expression
{
doEpcLogCollection
}
}
steps
{
steps
{
withCredentials
([
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
...
@@ -317,6 +327,9 @@ pipeline {
...
@@ -317,6 +327,9 @@ pipeline {
}
}
}
}
stage
(
'Log Collection (Iperf)'
)
{
stage
(
'Log Collection (Iperf)'
)
{
when
{
expression
{
doEpcLogCollection
}
}
steps
{
steps
{
withCredentials
([
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
...
@@ -335,6 +348,9 @@ pipeline {
...
@@ -335,6 +348,9 @@ pipeline {
}
}
}
}
stage
(
'Log Collection (SPGW)'
)
{
stage
(
'Log Collection (SPGW)'
)
{
when
{
expression
{
doEpcLogCollection
}
}
steps
{
steps
{
withCredentials
([
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
...
@@ -353,6 +369,9 @@ pipeline {
...
@@ -353,6 +369,9 @@ pipeline {
}
}
}
}
stage
(
'Log Collection (MME)'
)
{
stage
(
'Log Collection (MME)'
)
{
when
{
expression
{
doEpcLogCollection
}
}
steps
{
steps
{
withCredentials
([
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
...
@@ -371,6 +390,9 @@ pipeline {
...
@@ -371,6 +390,9 @@ pipeline {
}
}
}
}
stage
(
'Log Collection (HSS)'
)
{
stage
(
'Log Collection (HSS)'
)
{
when
{
expression
{
doEpcLogCollection
}
}
steps
{
steps
{
withCredentials
([
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.EPC_Credentials}"
,
usernameVariable:
'EPC_Username'
,
passwordVariable:
'EPC_Password'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment