Commit c9065df7 authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

CI: Add test into Jenkinsfile-Gitlab-Container

parent 63575e54
...@@ -795,6 +795,29 @@ pipeline { ...@@ -795,6 +795,29 @@ pipeline {
} }
} }
} }
stage ("SA-AERIAL-OAIUE-CN5G") {
when { expression {do5Gtest || do5GUeTest} }
steps {
script {
triggerSlaveJob ('RAN-SA-AERIAL-OAIUE-CN5G', 'SA-AERIAL-OAIUE-CN5G')
}
}
post {
always {
script {
// Using a unique variable name for each test stage to avoid overwriting on a global variable
// due to parallel-time concurrency
saAERIALOAIUEStatus = finalizeSlaveJob('RAN-SA-AERIAL-OAIUE-CN5G')
}
}
failure {
script {
currentBuild.result = 'FAILURE'
failingStages += saAERIALOAIUEStatus
}
}
}
}
stage ("SA-OAIUE-CN5G") { stage ("SA-OAIUE-CN5G") {
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