@@ -139,6 +139,15 @@ e2e request and config validation:
139139 reports :
140140 junit : tests/e2e/out.xml
141141 script :
142+ - |
143+ # Print E2E parameters
144+ echo "TESTBED=${TESTBED}"
145+ echo "MARKERS=${MARKERS}"
146+ echo "KEYWORDS=${KEYWORDS}"
147+ echo "PYTEST_ARGS=${PYTEST_ARGS}"
148+ echo "RETINA_PARAM_ARGS=${RETINA_PARAM_ARGS}"
149+ echo "RETINA_LAUNCHER_ARGS=${RETINA_LAUNCHER_ARGS}"
150+ echo "E2E_LOG_LEVEL=${E2E_LOG_LEVEL}"
142151 # Clean LFS files
143152 - |
144153 while read -r line; do
@@ -151,11 +160,9 @@ e2e request and config validation:
151160 - |
152161 echo "" >> .gitlab/ci/e2e/.env
153162 cat $RETINA_CONFIG_ENV >> .gitlab/ci/e2e/.env
154-
155- echo -e "\nGNB_BINARY_PATH=../../" >> .gitlab/ci/e2e/.env
156- echo -e "\nGNB_REMOTE_PATH=$CI_PROJECT_DIR" >> .gitlab/ci/e2e/.env
157- echo -e "\nis_executable=false" >> .gitlab/ci/e2e/.env
158-
163+ # Modify request to shared the complete folder with the gnb container
164+ - |
165+ yq -i '(.[] | select(.type == "gnb") | .shared_files) += [{"local_path": "../../", "remote_path": env(CI_PROJECT_DIR), "is_executable": false}]' ${CI_PROJECT_DIR}/.gitlab/ci/e2e/retina_request_${TESTBED}.yml
159166 # Set username for retina
160167 - |
161168 cd tests/e2e
@@ -368,19 +375,39 @@ amari 32UE memcheck:
368375 - *txrx-lib
369376 - *retina-needs
370377
371- amari 4 cudu :
378+ cudu amari 8UE :
372379 extends : .zmq
373380 variables :
374381 TESTBED : zmq_cudu
375- MARKERS : " smoke"
376- RETINA_PARAM_ARGS : " gnb.all.pcap=True gnb.all.mac_enable=True gnb.all.rlc_enable=True gnb.all.enable_integrity_protection=True"
382+ MARKERS : " zmq and not smoke"
377383 E2E_LOG_LEVEL : " info"
384+ RETINA_PARAM_ARGS : " gnb.all.pcap=True gnb.all.rlc_enable=False gnb.all.enable_integrity_protection=True"
378385 allow_failure : true
379386 needs :
380387 - job : " basic relwithdeb"
381388 artifacts : true
382389 - *txrx-lib
383390 - *retina-needs
391+ parallel :
392+ matrix :
393+ - KEYWORDS : ["reestablishment and sequentially"]
394+
395+ cudu amari 32UE :
396+ extends : .zmq
397+ variables :
398+ TESTBED : zmq_cudu
399+ MARKERS : " zmq and not smoke"
400+ E2E_LOG_LEVEL : " info"
401+ RETINA_PARAM_ARGS : " gnb.all.pcap=True gnb.all.rlc_enable=False gnb.all.enable_integrity_protection=True"
402+ allow_failure : true
403+ needs :
404+ - job : " basic relwithdeb"
405+ artifacts : true
406+ - *txrx-lib
407+ - *retina-needs
408+ parallel :
409+ matrix :
410+ - KEYWORDS : ["ping", "iperf and tcp and not band:3 and bandwidth:50"]
384411
385412# ###############################################################################
386413# TEST MODE
0 commit comments