Commit ee4dc21f authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

CI: Add VRT-Sim test pipeline to parent pipeline

parent 60f6137d
...@@ -380,6 +380,29 @@ pipeline { ...@@ -380,6 +380,29 @@ pipeline {
} }
} }
} }
stage ("VRT-Sim-Test-5G") {
when { expression {do5Gtest || do5GUeTest} }
steps {
script {
triggerSlaveJob ('RAN-VRT-Sim-Test-5G', 'VRT-Sim-Test-5G')
}
}
post {
always {
script {
// Using a unique variable name for each test stage to avoid overwriting on a global variable
// due to parallel-time concurrency
vrtSim5GStatus = finalizeSlaveJob('RAN-VRT-Sim-Test-5G')
}
}
failure {
script {
currentBuild.result = 'FAILURE'
failingStages += vrtSim5GStatus
}
}
}
}
stage ("RF-Sim-Test-5G") { stage ("RF-Sim-Test-5G") {
when { expression {do5Gtest || do5GUeTest} } when { expression {do5Gtest || do5GUeTest} }
steps { steps {
......
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