Commit 47437903 authored by Raphael Defosseux's avatar Raphael Defosseux

CI: lock mechanism improvement

 -- in slave job, the lock is now properly done for the whole job
 -- in master job, all slave jobs are really sent in parallel
    they should now now appear as failed (if fails)
Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 5eb2bd7d
......@@ -294,12 +294,9 @@ pipeline {
}
}
}
stage ("Test on CI bench #1") {
stages {
stage ("Test FDD - Band 7 - B210") {
steps {
script {
try {
if ("MERGE".equals(env.gitlabActionType)) {
gitlabCommitStatus(name: "Test-FDD-Band7") {
build job: 'eNB-CI-FDD-Band7-B210',
......@@ -321,9 +318,6 @@ pipeline {
]
}
}
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
}
}
post {
......@@ -348,7 +342,6 @@ pipeline {
stage ("Test TDD - Band 40 - B210") {
steps {
script {
try {
if ("MERGE".equals(env.gitlabActionType)) {
gitlabCommitStatus(name: "Test-TDD-Band40") {
build job: 'eNB-CI-TDD-Band40-B210',
......@@ -370,9 +363,6 @@ pipeline {
]
}
}
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
}
}
post {
......@@ -397,7 +387,6 @@ pipeline {
stage ("Test IF4p5 - FDD - Band 7 - B210") {
steps {
script {
try {
if ("MERGE".equals(env.gitlabActionType)) {
gitlabCommitStatus(name: "Test-IF4p5-FDD-Band7") {
build job: 'eNB-CI-IF4p5-FDD-Band7-B210',
......@@ -419,9 +408,6 @@ pipeline {
]
}
}
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
}
}
post {
......@@ -446,7 +432,6 @@ pipeline {
stage ("Test IF4p5 - TDD - Band 40 - B210") {
steps {
script {
try {
if ("MERGE".equals(env.gitlabActionType)) {
gitlabCommitStatus(name: "Test-IF4p5-TDD-Band40") {
build job: 'eNB-CI-IF4p5-TDD-Band40-B210',
......@@ -468,9 +453,6 @@ pipeline {
]
}
}
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
}
}
post {
......@@ -493,8 +475,6 @@ pipeline {
}
}
}
}
}
post {
always {
script {
......
......@@ -61,6 +61,7 @@ pipeline {
options {
disableConcurrentBuilds()
ansiColor('xterm')
lock (ciSmartPhoneResource)
}
// the following parameter options are commented out so it shows the ones
// that you SHALL have to run the job.
......@@ -184,7 +185,6 @@ pipeline {
steps {
script {
dir ('ci-scripts') {
lock (ciSmartPhoneResource) {
try {
echo "\u2705 \u001B[32m${testStageName}\u001B[0m"
withCredentials([
......@@ -201,7 +201,6 @@ pipeline {
}
}
}
}
stage ("Terminate") {
parallel {
stage('Terminate UE') {
......
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