Compare commits

...

3 Commits

Author SHA1 Message Date
Jaroslava Fiedlerova
44523cca2d CI: Add RAN-SA-FHI72-Timing-Phytest into parent pipeline 2026-04-14 08:46:15 +00:00
Jaroslava Fiedlerova
0bf34c169d Enable FHI72 testing in run_locally script 2026-04-14 08:43:20 +00:00
Jaroslava Fiedlerova
6e5a704ad1 CI: Adjust RT stats datalog for FHI72 phytest on bulbul 2026-04-14 08:42:45 +00:00
3 changed files with 26 additions and 3 deletions

View File

@@ -632,6 +632,29 @@ pipeline {
}
}
}
stage ("SA-FHI72-Timing-Phytest") {
when { expression {do5Gtest} }
steps {
script {
triggerSlaveJob ('RAN-SA-FHI72-Timing-Phytest', 'SA-FHI72-Timing-Phytest')
}
}
post {
always {
script {
// Using a unique variable name for each test stage to avoid overwriting on a global variable
// due to parallel-time concurrency
phytestFHI72Status = finalizeSlaveJob('RAN-SA-FHI72-Timing-Phytest')
}
}
failure {
script {
currentBuild.result = 'FAILURE'
failingStages += phytestFHI72Status
}
}
}
}
stage ("LTE-TDD-2x2-Container") {
when { expression {do4Gtest} }
steps {

View File

@@ -12,9 +12,9 @@ Ref :
tx_fhaul : 40.2
feptx_prec (per port, half_slot) : 12.3
L1 Tx processing : 221.0
DLSCH encoding : 141.0
DLSCH encoding : 121.0
L1 Rx processing : 332.5
UL segments decoding : 55.2
UL segments decoding : 45.2
UL Indication : 0.4
Slot Indication : 14.3
PUSCH inner-receiver : 421.4

View File

@@ -27,7 +27,7 @@ set -x
# docker build . -f docker/Dockerfile.base.ubuntu -t ran-base
docker tag oai-nr-ue oai-ci/oai-nr-ue:develop-${SHORT_COMMIT_SHA}
docker tag oai-gnb oai-ci/oai-gnb:develop-${SHORT_COMMIT_SHA}
docker tag oai-gnb-fhi72 oai-ci/oai-gnb-fhi72:develop-${SHORT_COMMIT_SHA}
docker tag oai-nr-cuup oai-ci/oai-nr-cuup:develop-${SHORT_COMMIT_SHA}
python3 main.py --mode=InitiateHtml --ranRepository=NONE --ranBranch=${CURRENT_BRANCH} \