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
ZhouShuya
OpenXG-RAN
Commits
8436f128
Commit
8436f128
authored
May 03, 2019
by
Boris Djalal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding terminate Python call.
Signed-off-by:
Boris Djalal
<
boris.djalal@eurecom.fr
>
parent
977f5553
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
ci-scripts/Jenkinsfile-OAI-gNB-UE
ci-scripts/Jenkinsfile-OAI-gNB-UE
+12
-2
No files found.
ci-scripts/Jenkinsfile-OAI-gNB-UE
View file @
8436f128
...
@@ -227,7 +227,12 @@ pipeline {
...
@@ -227,7 +227,12 @@ pipeline {
parallel
{
parallel
{
stage
(
'Terminate NR UE'
)
{
stage
(
'Terminate NR UE'
)
{
steps
{
steps
{
echo
'\u2705 \u001B[32mTerminate UE\u001B[0m'
echo
'\u2705 \u001B[32mTerminate NR UE\u001B[0m'
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.eNB_Credentials}"
,
usernameVariable:
'UE_Username'
,
passwordVariable:
'UE_Password'
]
])
{
sh
"python3 ci-scripts/main.py --mode=TerminateOAIUE --UEPAddress=${params.eNB_IPAddress} --UEUserName=${UE_Username} --UEPassword=${UE_Password}"
}
}
}
post
{
post
{
success
{
success
{
...
@@ -239,7 +244,12 @@ pipeline {
...
@@ -239,7 +244,12 @@ pipeline {
}
}
stage
(
'Terminate NR eNB'
)
{
stage
(
'Terminate NR eNB'
)
{
steps
{
steps
{
echo
'\u2705 \u001B[32mTerminate eNB\u001B[0m'
echo
'\u2705 \u001B[32mTerminate NR eNB\u001B[0m'
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.eNB_Credentials}"
,
usernameVariable:
'eNB_Username'
,
passwordVariable:
'eNB_Password'
]
])
{
sh
"python3 ci-scripts/main.py --mode=TerminateNB --eNBIPAddress=${params.eNB_IPAddress} --eNBUserName=${eNB_Username} --eNBPassword=${eNB_Password}"
}
}
}
post
{
post
{
success
{
success
{
...
...
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