diff --git a/ci-scripts/Jenkinsfile-gitlab b/ci-scripts/Jenkinsfile-gitlab index 2d89e00174b8ebfc65d7c39a6c6503563d31b177..56624d32300372d6f6326e5d873c9c66fc2a4395 100644 --- a/ci-scripts/Jenkinsfile-gitlab +++ b/ci-scripts/Jenkinsfile-gitlab @@ -464,6 +464,7 @@ pipeline { stage ("Test IF4p5 - FDD - Band 7 - B210") { steps { script { + sh "sleep 60" triggerSlaveJob ('eNB-CI-IF4p5-FDD-Band7-B210', 'Test-IF4p5-FDD-Band7') } } @@ -483,6 +484,7 @@ pipeline { stage ("Test IF4p5 - TDD - Band 40 - B210") { steps { script { + sh "sleep 60" triggerSlaveJob ('eNB-CI-IF4p5-TDD-Band40-B210', 'Test-IF4p5-TDD-Band40') } } @@ -585,6 +587,8 @@ pipeline { post { always { script { + // Stage destroy may not be run if error in previous stage + sh "./ci-scripts/oai-ci-vm-tool destroy --job-name ${JOB_NAME} --build-id ${BUILD_ID}" emailext attachmentsPattern: '*results*.html', body: '''Hi, diff --git a/ci-scripts/Jenkinsfile-tmp-full-ran b/ci-scripts/Jenkinsfile-tmp-full-ran index 500e4ba67418ee7764469ab211e6df2f2a8382ba..3e0777b6a7247f1ad83ca817e509be50bcb361f2 100644 --- a/ci-scripts/Jenkinsfile-tmp-full-ran +++ b/ci-scripts/Jenkinsfile-tmp-full-ran @@ -187,7 +187,7 @@ pipeline { } else { String[] myXmlTestSuite = testXMLFile.split("\\r?\\n") for (xmlFile in myXmlTestSuite) { - if (fileExists("ci-scripts/" + xmlFile)) { + if (fileExists(xmlFile)) { mainPythonAllXmlFiles += "--XMLTestFile=" + xmlFile + " " echo "Test XML file : ${xmlFile}" } diff --git a/ci-scripts/Jenkinsfile-tmp-ran b/ci-scripts/Jenkinsfile-tmp-ran index c0a967c6276374948a5eeb1978e8af27652af4c1..5ffaefa89ff261cd5b54c1f3510b0337ef57a06d 100644 --- a/ci-scripts/Jenkinsfile-tmp-ran +++ b/ci-scripts/Jenkinsfile-tmp-ran @@ -206,7 +206,7 @@ pipeline { } else { String[] myXmlTestSuite = testXMLFile.split("\\r?\\n") for (xmlFile in myXmlTestSuite) { - if (fileExists("ci-scripts/" + xmlFile)) { + if (fileExists(xmlFile)) { mainPythonAllXmlFiles += "--XMLTestFile=" + xmlFile + " " echo "Test XML file : ${xmlFile}" } diff --git a/ci-scripts/Jenkinsfile-tmp-ue b/ci-scripts/Jenkinsfile-tmp-ue index 0464c0374f0b71030e5815188adae83b6414a81f..c2db977bcb8ff4faf068ae68355bccbc810bce79 100644 --- a/ci-scripts/Jenkinsfile-tmp-ue +++ b/ci-scripts/Jenkinsfile-tmp-ue @@ -177,7 +177,7 @@ pipeline { } else { String[] myXmlTestSuite = testXMLFile.split("\\r?\\n") for (xmlFile in myXmlTestSuite) { - if (fileExists("ci-scripts/" + xmlFile)) { + if (fileExists(xmlFile)) { mainPythonAllXmlFiles += "--XMLTestFile=" + xmlFile + " " echo "Test XML file : ${xmlFile}" }