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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
b9a4ebd1
Commit
b9a4ebd1
authored
Mar 12, 2025
by
Jaroslava Fiedlerova
Committed by
Shubhika Garg
Mar 13, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: increase timeout for OC RHEL builds
parent
4f9a152f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ci-scripts/cls_cluster.py
ci-scripts/cls_cluster.py
+3
-3
No files found.
ci-scripts/cls_cluster.py
View file @
b9a4ebd1
...
...
@@ -330,7 +330,7 @@ class Cluster:
self
.
_recreate_bc
(
'ran-base'
,
baseTag
,
'openshift/ran-base-bc.yaml'
)
ranbase_job
=
self
.
_start_build
(
'ran-base'
)
attemptedImages
+=
[
'ran-base'
]
status
=
ranbase_job
is
not
None
and
self
.
_wait_build_end
([
ranbase_job
],
8
00
)
status
=
ranbase_job
is
not
None
and
self
.
_wait_build_end
([
ranbase_job
],
10
00
)
if
not
status
:
logging
.
error
(
'failure during build of ran-base'
)
self
.
cmd
.
run
(
f'oc logs
{
ranbase_job
}
&> cmake_targets/log/ran-base.log'
)
# cannot use cmd.run because of redirect
# recover logs by mounting image
...
...
@@ -392,7 +392,7 @@ class Cluster:
gnb_aw2s_job
=
self
.
_start_build
(
'oai-gnb-aw2s'
)
attemptedImages
+=
[
'oai-gnb-aw2s'
]
wait
=
enb_job
is
not
None
and
gnb_job
is
not
None
and
gnb_aw2s_job
is
not
None
and
self
.
_wait_build_end
([
enb_job
,
gnb_job
,
gnb_aw2s_job
],
6
00
)
wait
=
enb_job
is
not
None
and
gnb_job
is
not
None
and
gnb_aw2s_job
is
not
None
and
self
.
_wait_build_end
([
enb_job
,
gnb_job
,
gnb_aw2s_job
],
8
00
)
if
not
wait
:
logging
.
error
(
'error during build of eNB/gNB'
)
status
=
status
and
wait
# recover logs
...
...
@@ -421,7 +421,7 @@ class Cluster:
nrue_job
=
self
.
_start_build
(
'oai-nr-ue'
)
attemptedImages
+=
[
'oai-nr-ue'
]
wait
=
nr_cuup_job
is
not
None
and
lteue_job
is
not
None
and
nrue_job
is
not
None
and
self
.
_wait_build_end
([
nr_cuup_job
,
lteue_job
,
nrue_job
],
6
00
)
wait
=
nr_cuup_job
is
not
None
and
lteue_job
is
not
None
and
nrue_job
is
not
None
and
self
.
_wait_build_end
([
nr_cuup_job
,
lteue_job
,
nrue_job
],
8
00
)
if
not
wait
:
logging
.
error
(
'error during build of nr-cuup/lteUE/nrUE'
)
status
=
status
and
wait
# recover logs
...
...
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