Commit acd94f9d authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

Merge remote-tracking branch 'origin/ci-fixes' into integration_2024_w13

parents 141558b8 4885e1d4
...@@ -308,29 +308,6 @@ pipeline { ...@@ -308,29 +308,6 @@ pipeline {
} }
} }
} }
stage ("L2-Sim-Test-5G") {
when { expression {do5Gtest} }
steps {
script {
triggerSlaveJob ('RAN-L2-Sim-Test-5G', 'L2-Sim-Test-5G')
}
}
post {
always {
script {
// Using a unique variable name for each test stage to avoid overwriting on a global variable
// due to parallel-time concurrency
l2Sim5GStatus = finalizeSlaveJob('RAN-L2-Sim-Test-5G')
}
}
failure {
script {
currentBuild.result = 'FAILURE'
failingStages += l2Sim5GStatus
}
}
}
}
stage ("LTE-B200-FDD-LTEBOX-Container") { stage ("LTE-B200-FDD-LTEBOX-Container") {
when { expression {do4Gtest} } when { expression {do4Gtest} }
steps { steps {
......
...@@ -186,7 +186,7 @@ L1s = ( ...@@ -186,7 +186,7 @@ L1s = (
num_cc = 1; num_cc = 1;
tr_n_preference = "local_mac"; tr_n_preference = "local_mac";
prach_dtx_threshold = 200; prach_dtx_threshold = 200;
pucch0_dtx_threshold = 150; pucch0_dtx_threshold = 100;
ofdm_offset_divisor = 8; #set this to UINT_MAX for offset 0 ofdm_offset_divisor = 8; #set this to UINT_MAX for offset 0
} }
); );
......
...@@ -54,7 +54,7 @@ services: ...@@ -54,7 +54,7 @@ services:
--continuous-tx -E --continuous-tx -E
--telnetsrv --telnetsrv.shrmod ci --telnetsrv --telnetsrv.shrmod ci
--gNBs.[0].min_rxtxtime 2 --gNBs.[0].do_CSIRS 1 --gNBs.[0].do_SRS 1 --gNBs.[0].min_rxtxtime 2 --gNBs.[0].do_CSIRS 1 --gNBs.[0].do_SRS 1
--RUs.[0].att_rx 18 --RUs.[0].att_tx 18 --RUs.[0].att_rx 14 --RUs.[0].att_tx 14
--log_config.global_log_options level,nocolor,time,line_num,function --log_config.global_log_options level,nocolor,time,line_num,function
volumes: volumes:
- ../../conf_files/gnb-du.sa.band78.106prb.usrpb200.conf:/opt/oai-gnb/etc/gnb.conf - ../../conf_files/gnb-du.sa.band78.106prb.usrpb200.conf:/opt/oai-gnb/etc/gnb.conf
......
...@@ -35,4 +35,8 @@ COPY . . ...@@ -35,4 +35,8 @@ COPY . .
RUN /bin/sh oaienv && \ RUN /bin/sh oaienv && \
cd cmake_targets && \ cd cmake_targets && \
mkdir -p log && \ mkdir -p log && \
./build_oai --eNB --gNB --RU --UE --nrUE --ninja --build-lib "telnetsrv enbscope uescope nrscope" -w USRP -t Ethernet --noavx512 -c CXXFLAGS="-Werror -fstack-protector-strong" CFLAGS="-Werror -fstack-protector-strong" ./build_oai -c --ninja \
--eNB --gNB --RU --UE --nrUE \
--build-lib "telnetsrv enbscope uescope nrscope" \
-w USRP -t Ethernet \
--noavx512
...@@ -42,6 +42,6 @@ RUN /bin/sh oaienv && \ ...@@ -42,6 +42,6 @@ RUN /bin/sh oaienv && \
-w USRP -t Ethernet \ -w USRP -t Ethernet \
--build-e2 --cmake-opt -DXAPP_MULTILANGUAGE=OFF \ --build-e2 --cmake-opt -DXAPP_MULTILANGUAGE=OFF \
--noavx512 \ --noavx512 \
--cmake-opt -DCMAKE_C_FLAGS=-Werror --cmake-opt -DCMAKE_CXX_FLAGS=-Werror $BUILD_OPTION && \ --cmake-opt -DCMAKE_C_FLAGS="-Werror -fstack-protector-strong" --cmake-opt -DCMAKE_CXX_FLAGS="-Werror -fstack-protector-strong" $BUILD_OPTION && \
# Mainly to see if the sanitize option was perfectly executed # Mainly to see if the sanitize option was perfectly executed
ldd ran_build/build/nr-softmodem ldd ran_build/build/nr-softmodem
...@@ -47,6 +47,7 @@ RUN dnf update -y && \ ...@@ -47,6 +47,7 @@ RUN dnf update -y && \
libXpm \ libXpm \
libX11 \ libX11 \
atlas \ atlas \
gdb \
lksctp-tools \ lksctp-tools \
tzdata \ tzdata \
net-tools \ net-tools \
......
...@@ -48,6 +48,7 @@ RUN dnf update -y && \ ...@@ -48,6 +48,7 @@ RUN dnf update -y && \
libXpm \ libXpm \
libX11 \ libX11 \
atlas \ atlas \
gdb \
lksctp-tools \ lksctp-tools \
tzdata \ tzdata \
net-tools \ net-tools \
......
...@@ -51,6 +51,7 @@ RUN apt-get update && \ ...@@ -51,6 +51,7 @@ RUN apt-get update && \
libblas3 \ libblas3 \
libatlas3-base \ libatlas3-base \
libconfig9 \ libconfig9 \
gdb \
openssl \ openssl \
net-tools \ net-tools \
iproute2 \ iproute2 \
......
...@@ -10,9 +10,10 @@ die() { ...@@ -10,9 +10,10 @@ die() {
exit 1 exit 1
} }
# for mounting into docker, need absolute path -> realpath
IMAGE=$1 IMAGE=$1
COREDUMP=$2 COREDUMP=$(realpath $2)
SOURCES=$3 SOURCES=$(realpath $3)
set -x set -x
...@@ -32,6 +33,9 @@ docker image inspect $IMAGE > /dev/null || exit 1 ...@@ -32,6 +33,9 @@ docker image inspect $IMAGE > /dev/null || exit 1
if [ $(grep "oai-gnb:" <<< $IMAGE) ] || [ $(grep "oai-gnb-aerial:" <<< $IMAGE) ]; then if [ $(grep "oai-gnb:" <<< $IMAGE) ] || [ $(grep "oai-gnb-aerial:" <<< $IMAGE) ]; then
EXEC=bin/nr-softmodem EXEC=bin/nr-softmodem
TYPEPATH=oai-gnb TYPEPATH=oai-gnb
elif [ $(grep "oai-gnb-aw2s:" <<< $IMAGE) ]; then
EXEC=bin/nr-softmodem
TYPEPATH=oai-gnb-aw2s
elif [ $(grep "oai-nr-ue:" <<< $IMAGE) ]; then elif [ $(grep "oai-nr-ue:" <<< $IMAGE) ]; then
EXEC=bin/nr-uesoftmodem EXEC=bin/nr-uesoftmodem
TYPEPATH=oai-nr-ue TYPEPATH=oai-nr-ue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment