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
0caa6523
Commit
0caa6523
authored
Oct 19, 2023
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(ci): triggering the child pipeline from parent
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
80c2bc3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
5 deletions
+24
-5
ci-scripts/Jenkinsfile-GitLab-Container
ci-scripts/Jenkinsfile-GitLab-Container
+24
-5
No files found.
ci-scripts/Jenkinsfile-GitLab-Container
View file @
0caa6523
...
...
@@ -120,14 +120,13 @@ pipeline {
}
}
// Build Stages are Mandatory
// Later we will add a Ubuntu20 build
stage
(
"Image Building Processes"
)
{
when
{
expression
{
doBuild
}
}
parallel
{
stage
(
"Ubuntu
18
-Image-Builder"
)
{
stage
(
"Ubuntu-Image-Builder"
)
{
steps
{
script
{
triggerSlaveJob
(
'RAN-Ubuntu18-Image-Builder'
,
'Ubuntu
18
-Image-Builder'
)
triggerSlaveJob
(
'RAN-Ubuntu18-Image-Builder'
,
'Ubuntu-Image-Builder'
)
}
}
post
{
...
...
@@ -144,10 +143,10 @@ pipeline {
}
}
}
stage
(
"RHEL
8
-Cluster-Image-Builder"
)
{
stage
(
"RHEL-Cluster-Image-Builder"
)
{
steps
{
script
{
triggerSlaveJob
(
'RAN-RHEL8-Cluster-Image-Builder'
,
'RHEL
8
-Cluster-Image-Builder'
)
triggerSlaveJob
(
'RAN-RHEL8-Cluster-Image-Builder'
,
'RHEL-Cluster-Image-Builder'
)
}
}
post
{
...
...
@@ -184,6 +183,26 @@ pipeline {
}
}
}
stage
(
"ARM-Cross-Compile"
)
{
steps
{
script
{
triggerSlaveJob
(
'RAN-ARM-Cross-Compile-Builder'
,
'ARM-Cross-Compilation'
)
}
}
post
{
always
{
script
{
testBullet
=
finalizeSlaveJob
(
'RAN-ARM-Cross-Compile-Builder'
)
}
}
failure
{
script
{
currentBuild
.
result
=
'FAILURE'
failingStages
+=
testBullet
}
}
}
}
}
}
stage
(
"Image Test Processes"
)
{
...
...
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