Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Worker.N
openairinterface5G
Commits
fef0f732
Commit
fef0f732
authored
5 years ago
by
Raphael Defosseux
Browse files
Options
Downloads
Patches
Plain Diff
CI: separate 2 stages
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
96ed6a75
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ci-scripts/Jenkinsfile-gitlab
+21
-3
21 additions, 3 deletions
ci-scripts/Jenkinsfile-gitlab
with
21 additions
and
3 deletions
ci-scripts/Jenkinsfile-gitlab
+
21
−
3
View file @
fef0f732
...
...
@@ -513,18 +513,36 @@ pipeline {
}
}
}
stage
(
"Test OAI UE - FDD - Band
s
20
/7
- B200"
)
{
stage
(
"Test OAI UE - FDD - Band 20 - B200"
)
{
steps
{
script
{
triggerSlaveJobNoGitLab
(
'UE-CI-FDD-Band20-B200'
)
// calling a second job sequentially
triggerSlaveJob
(
'eNB-UE-CI-MONO-FDD-Band7-B200'
,
'Test-eNB-OAI-UE-FDD-Band7'
)
}
}
post
{
always
{
script
{
finalizeSlaveJob
(
'UE-CI-FDD-Band20-B200'
)
}
}
failure
{
script
{
currentBuild
.
result
=
'FAILURE'
}
}
}
}
stage
(
"Test OAI UE - OAI eNB - FDD - Band 7 - B200"
)
{
steps
{
script
{
// Delayed trigger on slave job, so it is always the last one to run
sh
"sleep 240"
triggerSlaveJob
(
'eNB-UE-CI-MONO-FDD-Band7-B200'
,
'Test-eNB-OAI-UE-FDD-Band7'
)
}
}
post
{
always
{
script
{
finalizeSlaveJob
(
'eNB-UE-CI-MONO-FDD-Band7-B200'
)
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment