Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
0e641650
Commit
0e641650
authored
May 30, 2023
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(ci): adding the core-network sanity check
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
ef06b145
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
5 deletions
+56
-5
ci-scripts/Jenkinsfile-GitLab-Container
ci-scripts/Jenkinsfile-GitLab-Container
+56
-5
No files found.
ci-scripts/Jenkinsfile-GitLab-Container
View file @
0e641650
...
@@ -444,6 +444,26 @@ pipeline {
...
@@ -444,6 +444,26 @@ pipeline {
}
}
}
}
}
}
stage
(
"Sanity-Check OAI-CN5G"
)
{
when
{
expression
{
do5Gtest
}
}
steps
{
script
{
triggerCN5GSlaveJob
(
'OAI-CN5G-COTS-UE-Test'
,
'OAI-CN5G-COTS-UE-Test'
)
}
}
post
{
always
{
script
{
finalizeSlaveJob
(
'OAI-CN5G-COTS-UE-Test'
)
}
}
failure
{
script
{
currentBuild
.
result
=
'FAILURE'
}
}
}
}
}
}
}
}
stage
(
"DockerHub-Push"
)
{
stage
(
"DockerHub-Push"
)
{
...
@@ -538,8 +558,36 @@ def triggerSlaveJob (jobName, gitlabStatusName) {
...
@@ -538,8 +558,36 @@ def triggerSlaveJob (jobName, gitlabStatusName) {
if
(
localStatus
.
resultIsBetterOrEqualTo
(
'SUCCESS'
))
{
if
(
localStatus
.
resultIsBetterOrEqualTo
(
'SUCCESS'
))
{
echo
"${jobName} Slave Job is OK"
echo
"${jobName} Slave Job is OK"
}
else
{
}
else
{
echo
"${jobName} Slave Job is KO"
error
"${jobName} Slave Job is KO"
sh
"ci-scripts/fail.sh"
}
}
}
def
triggerCN5GSlaveJob
(
jobName
,
gitlabStatusName
)
{
if
(
"MERGE"
.
equals
(
env
.
gitlabActionType
))
{
shortenShaOne
=
sh
returnStdout:
true
,
script:
'git log -1 --pretty=format:"%h" --abbrev=8 '
+
env
.
gitlabMergeRequestLastCommit
shortenShaOne
=
shortenShaOne
.
trim
()
fullRanTag
=
'porcepix.sboai.cs.eurecom.fr/oai-gnb:'
+
env
.
gitlabSourceBranch
+
'-'
+
shortenShaOne
}
else
{
shortenShaOne
=
sh
returnStdout:
true
,
script:
'git log -1 --pretty=format:"%h" --abbrev=8 '
+
env
.
GIT_COMMIT
shortenShaOne
=
shortenShaOne
.
trim
()
fullRanTag
=
'porcepix.sboai.cs.eurecom.fr/oai-gnb:develop-'
+
shortenShaOne
}
// Workaround for the "cancelled" GitLab pipeline notification
// The slave job is triggered with the propagate false so the following commands are executed
// Its status is now PASS/SUCCESS from a stage pipeline point of view
// localStatus variable MUST be analyzed to properly assess the status
localStatus
=
build
job:
jobName
,
parameters:
[
string
(
name:
'FULL_RAN_TAG'
,
value:
String
.
valueOf
(
fullRanTag
))
],
propagate:
false
localResult
=
localStatus
.
getResult
()
echo
"${jobName} Slave Job status is ${localResult}"
gitlabCommitStatus
(
name:
gitlabStatusName
)
{
if
(
localStatus
.
resultIsBetterOrEqualTo
(
'SUCCESS'
))
{
echo
"${jobName} Slave Job is OK"
}
else
{
error
"${jobName} Slave Job is KO"
}
}
}
}
}
}
...
@@ -568,15 +616,18 @@ def triggerSlaveJobNoGitLab (jobName) {
...
@@ -568,15 +616,18 @@ def triggerSlaveJobNoGitLab (jobName) {
if
(
localStatus
.
resultIsBetterOrEqualTo
(
'SUCCESS'
))
{
if
(
localStatus
.
resultIsBetterOrEqualTo
(
'SUCCESS'
))
{
echo
"${jobName} Slave Job is OK"
echo
"${jobName} Slave Job is OK"
}
else
{
}
else
{
echo
"${jobName} Slave Job is KO"
error
"${jobName} Slave Job is KO"
sh
"ci-scripts/fail.sh"
}
}
}
}
def
finalizeSlaveJob
(
jobName
)
{
def
finalizeSlaveJob
(
jobName
)
{
// In case of any non-success, we are retrieving the HTML report of the last completed
// In case of any non-success, we are retrieving the HTML report of the last completed
// slave job. The only drop-back is that we may retrieve the HTML report of a previous build
// slave job. The only drop-back is that we may retrieve the HTML report of a previous build
fileName
=
"test_results-${jobName}.html"
if
(
jobName
==
'OAI-CN5G-COTS-UE-Test'
)
{
fileName
=
"test_results_oai_cn5g_cots_ue.html"
}
else
{
fileName
=
"test_results-${jobName}.html"
}
if
(!
fileExists
(
fileName
))
{
if
(!
fileExists
(
fileName
))
{
copyArtifacts
(
projectName:
jobName
,
copyArtifacts
(
projectName:
jobName
,
filter:
'test_results*.html'
,
filter:
'test_results*.html'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment