Skip to content

Commit 6cc2635

Browse files
qarlosalbertocodebot
authored andcommitted
ci: reorder conf viavi
1 parent 9ff7ee2 commit 6cc2635

File tree

7 files changed

+26
-24
lines changed

7 files changed

+26
-24
lines changed

.gitlab/ci/e2e/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SRSGNB_REGISTRY_URI=registry.gitlab.com/softwareradiosystems/srsgnb
22
RETINA_REGISTRY_PREFIX=registry.gitlab.com/softwareradiosystems/ci/retina
3-
RETINA_VERSION=0.44.9
3+
RETINA_VERSION=0.45.0
44
UBUNTU_VERSION=24.04
55
AMARISOFT_VERSION=2023-09-08
66
SRSUE_VERSION=23.11

.gitlab/ci/e2e/retina_request_test_mode.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
limits: "6G"
2424
resources:
2525
- type: zmq
26-
nof_ant: 4
26+
nof_antennas_dl: 4
27+
nof_antennas_ul: 4
2728
environment:
2829
- PATH: ${PATH}:/builds/softwareradiosystems/srsgnb/build/apps/gnb
2930
shared_files:

.gitlab/ci/e2e/retina_request_zmq.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
requests: 1
4242
memory:
4343
requests: "8G"
44-
limits: "8G"
4544
ephemeral-storage:
4645
requests: "15G"
4746
limits: "15G"

.gitlab/ci/e2e/retina_request_zmq_4x4_mimo.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
limits: "6G"
2323
resources:
2424
- type: zmq
25-
nof_ant: 4
25+
nof_antennas_dl: 4
26+
nof_antennas_ul: 4
2627
- type: license
2728
model: amarisoft-5g
2829
shared_files:
@@ -41,13 +42,13 @@
4142
requests: 1
4243
memory:
4344
requests: "8G"
44-
limits: "8G"
4545
ephemeral-storage:
4646
requests: "6G"
4747
limits: "6G"
4848
resources:
4949
- type: zmq
50-
nof_ant: 4
50+
nof_antennas_dl: 4
51+
nof_antennas_ul: 4
5152
environment:
5253
- PATH: ${PATH}:/builds/softwareradiosystems/srsgnb/build/apps/gnb
5354
shared_files:

tests/e2e/tests/iperf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,9 +477,9 @@ def test_zmq_smoke(
477477
),
478478
)
479479
@mark.zmq
480-
@mark.flaky(
481-
reruns=2, only_rerun=["failed to start", "Attach timeout reached", "iperf did not achieve the expected data rate"]
482-
)
480+
# @mark.flaky(
481+
# reruns=2, only_rerun=["failed to start", "Attach timeout reached", "iperf did not achieve the expected data rate"]
482+
# )
483483
# pylint: disable=too-many-arguments
484484
def test_zmq(
485485
retina_manager: RetinaTestManager,

tests/e2e/tests/viavi.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,22 @@ def _test_viavi(
192192
"""
193193
retina_data.test_config = {
194194
"gnb": {
195-
"parameters": {"gnb_id": 1, "log_level": "warning", "pcap": False, "max_rb_size": max_rb_size},
196-
"templates": {"cell": str(Path(__file__).joinpath("../viavi/config.yml").resolve())},
195+
"parameters": {
196+
"gnb_id": 1,
197+
"log_level": "warning",
198+
"pcap": False,
199+
"max_rb_size": max_rb_size,
200+
"dl_arfcn": 625000,
201+
"band": 78,
202+
"channel_bandwidth_MHz": 100,
203+
"common_scs": 30,
204+
"tac": 7,
205+
"pci": 1,
206+
"nof_antennas_dl": 4,
207+
"nof_antennas_ul": 1,
208+
"prach_config_index": 159,
209+
},
210+
"templates": {"extra": str(Path(__file__).joinpath("../viavi/config.yml").resolve())},
197211
},
198212
}
199213
if metrics_server is not None:

tests/e2e/tests/viavi/config.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,10 @@
77
#
88

99
cell_cfg:
10-
dl_arfcn: 625000
11-
band: 78
12-
channel_bandwidth_MHz: 100
13-
common_scs: 30
14-
plmn: "{{mcc}}{{mnc}}"
15-
tac: 7
16-
pci: 1
1710
sib:
1811
t301: 2000
1912
t311: 3000
2013
prach:
21-
prach_config_index: 159
2214
prach_root_sequence_index: 1
2315
zero_correlation_zone: 0
2416
prach_frequency_start: 12
@@ -32,18 +24,13 @@ cell_cfg:
3224
mcs_table: qam256
3325
max_alloc_attempts: 8
3426
max_pdschs_per_slot: 8
35-
{% if max_rb_size != -1 %}
36-
max_rb_size: {{ max_rb_size }}
37-
{% endif %}
3827
ul_common:
3928
max_ul_grants_per_slot: 16
4029
max_pucchs_per_slot: 14
4130
pusch:
4231
mcs_table: qam256
4332
min_k2: 2
4433
max_puschs_per_slot: 8
45-
nof_antennas_dl: 4
46-
nof_antennas_ul: 1
4734
tdd_ul_dl_cfg:
4835
nof_dl_symbols: 7
4936
nof_dl_slots: 7

0 commit comments

Comments
 (0)