Commit 29977a3a authored by Boris Djalal's avatar Boris Djalal

Save

Signed-off-by: default avatarBoris Djalal <boris.djalal@eurecom.fr>
parent eda00e40
...@@ -151,6 +151,35 @@ pipeline { ...@@ -151,6 +151,35 @@ pipeline {
} }
} }
} }
stage ("Terminate") {
parallel {
stage('Terminate NR UE') {
steps {
echo '\u2705 \u001B[32mTerminate UE\u001B[0m'
}
post {
success {
script {
termStatusArray[termUE] = true
}
}
}
}
stage('Terminate NR eNB') {
steps {
echo '\u2705 \u001B[32mTerminate eNB\u001B[0m'
}
post {
success {
script {
termStatusArray[termENB] = true
}
}
}
}
}
}
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment