Skip to content

Commit 74be182

Browse files
author
codebot
committed
Update main
# Conflicts: # apps/units/flexible_du/du_high/du_high_wrapper_config_helper.h # apps/units/flexible_du/du_low/du_low_wrapper_config_helper.h # apps/units/flexible_du/split_7_2/split_7_2_du_impl.cpp # apps/units/flexible_du/split_7_2/split_7_2_du_impl.h # apps/units/flexible_du/split_8/split_8_du_impl.cpp # apps/units/flexible_du/split_8/split_8_du_impl.h # include/srsran/du/du_high/du_high_wrapper_factory.h # include/srsran/du/du_wrapper.h # include/srsran/du/du_wrapper_config.h # include/srsran/mac/time_alignment_group_config.h # include/srsran/support/event_tracing.h # lib/du/du_high/du_high_executor_strategies.h # lib/du/du_wrapper_factory.cpp # lib/du/du_wrapper_impl.cpp # lib/support/event_tracing.cpp # tests/unittests/phy/upper/equalization/channel_equalizer_test_data.tar.gz # tests/unittests/phy/upper/signal_processors/dmrs_pusch_estimator_test_data.tar.gz # tests/unittests/phy/upper/signal_processors/port_channel_estimator_test_data.tar.gz
2 parents 3d1caed + 9a8757c commit 74be182

File tree

963 files changed

+17918
-10376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

963 files changed

+17918
-10376
lines changed

.github/workflows/ccpp.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ jobs:
1919
compiler: [gcc, clang]
2020
steps:
2121
- uses: actions/checkout@v3
22-
- name: Build srsRAN Project on x86 ${{ matrix.os }}
22+
- name: Install Dependencies
2323
run: |
24-
sudo apt update
25-
sudo apt install -y cmake make gcc g++ pkg-config libfftw3-dev libmbedtls-dev libsctp-dev libyaml-cpp-dev libgtest-dev ninja-build
26-
mkdir build && cd build && cmake -DENABLE_UHD=False -GNinja .. && ninja && ctest
24+
sudo docker/scripts/install_dependencies.sh
25+
- name: Build srsRAN Project on x86 ${{ matrix.os }} with compiler ${{ matrix.compiler }}
26+
run: |
27+
docker/scripts/builder.sh -c ${{ matrix.compiler }} -m "-j$(nproc)" .
28+
- name: Run unit tests
29+
run: |
30+
cd build && ctest -j$(nproc) --schedule-random --output-on-failure

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
docker:
12+
if: ${{ vars.SKIP_DOCKER_JOB != 'true' }}
1213
runs-on: ubuntu-latest
1314
strategy:
1415
matrix:
@@ -143,4 +144,4 @@ jobs:
143144
NAME="${{ env.NAME }}"
144145
LIB=${{ matrix.LIB }}
145146
LIB_VERSION=${{ matrix.LIB_VERSION }}
146-
MARCH=${{ matrix.MARCH }}
147+
MARCH=${{ matrix.MARCH }}

.gitlab-ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,14 @@ stages:
5353
- rf
5454
- manual
5555
- documentation
56+
# release
57+
- pre private
5658
- private
59+
- post private
5760
- public
61+
- post public
5862
- release
63+
- post release
5964

6065
variables:
6166
SLACK_CHANNEL_OK: "#ci_gnb"
@@ -128,14 +133,14 @@ matlab nightly:
128133
SRSRAN_COMMIT: $CI_COMMIT_SHA
129134
NOTIFY_SLACK: "true"
130135
when: delayed
131-
start_in: 3 hours
136+
start_in: 5 hours
132137
inherit:
133138
variables: false
134139
trigger:
135140
project: softwareradiosystems/srsgnb_matlab
136141
branch: master
137142

138-
enterprise nightly:
143+
plugin nightly:
139144
stage: ci
140145
rules:
141146
- if: $CI_DESCRIPTION =~ /Nightly Build Unit Tests/
@@ -145,11 +150,11 @@ enterprise nightly:
145150
SRSRAN_COMMIT: $CI_COMMIT_SHA
146151
NOTIFY_SLACK: "true"
147152
when: delayed
148-
start_in: 3 hours
153+
start_in: 7 hours
149154
inherit:
150155
variables: false
151156
trigger:
152-
project: softwareradiosystems/srsran_5g_enterprise
157+
project: ${PLUGIN_REPO}
153158
branch: main
154159

155160
matlab weekly:

.gitlab/ci-shared/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,15 @@ variables:
121121
- |
122122
launch_tests_srsran() {
123123
cd ${SRSRANDIR}/build
124-
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
124+
echo "Using LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
125125
set -x
126126
ctest -j${KUBERNETES_CPU_REQUEST} --schedule-random --output-on-failure --output-junit xunit.xml "$@"
127127
{ set +x; } 2>/dev/null
128128
}
129129
- |
130130
launch_tests_plugin() {
131131
cd ${CI_PROJECT_DIR}/build
132-
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
132+
echo "Using LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
133133
set -x
134134
ctest -j${KUBERNETES_CPU_REQUEST} --schedule-random --output-on-failure --output-junit xunit.xml "$@"
135135
{ set +x; } 2>/dev/null

0 commit comments

Comments
 (0)