mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Speed up ubuntu22 image build Speed up softmodems build by means of: - Avoiding the copying the repo (using bind instead) - Creating cache directories for: - ccache cache - CPM cache - Same technique applied to FlexRIC build - Make ubuntu ran-base image docker build cache friendly
74 lines
2.8 KiB
Docker
74 lines
2.8 KiB
Docker
#/*
|
|
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
|
|
# * contributor license agreements. See the NOTICE file distributed with
|
|
# * this work for additional information regarding copyright ownership.
|
|
# * The OpenAirInterface Software Alliance licenses this file to You under
|
|
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
|
|
# * except in compliance with the License.
|
|
# * You may obtain a copy of the License at
|
|
# *
|
|
# * http://www.openairinterface.org/?page_id=698
|
|
# *
|
|
# * Unless required by applicable law or agreed to in writing, software
|
|
# * distributed under the License is distributed on an "AS IS" BASIS,
|
|
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# * See the License for the specific language governing permissions and
|
|
# * limitations under the License.
|
|
# *-------------------------------------------------------------------------------
|
|
# * For more information about the OpenAirInterface (OAI) Software Alliance:
|
|
# * contact@openairinterface.org
|
|
# */
|
|
#---------------------------------------------------------------------
|
|
#
|
|
# Dockerfile for the Open-Air-Interface BUILD service
|
|
# Valid for Ubuntu 22.04
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
FROM ran-base:latest AS ran-build
|
|
ARG BUILD_OPTION
|
|
|
|
ARG E2AP_VERSION=E2AP_V3
|
|
ARG KPM_VERSION=KPM_V3_00
|
|
|
|
RUN rm -Rf /oai-ran
|
|
WORKDIR /oai-ran
|
|
COPY . .
|
|
|
|
# build all targets so final targets can be created afterwards
|
|
RUN \
|
|
# Mount CCache cache direrctory
|
|
--mount=type=cache,target=/root/.cache/ccache/ \
|
|
# Mount CPM package cache
|
|
--mount=type=cache,target=/root/.cache/cpm/ \
|
|
/bin/sh oaienv && \
|
|
cd cmake_targets && \
|
|
mkdir -p log && \
|
|
./build_oai -c --ninja \
|
|
--eNB --gNB --RU --UE --nrUE \
|
|
--build-lib "telnetsrv enbscope uescope nrscope" \
|
|
-w USRP -t Ethernet \
|
|
--build-e2 --cmake-opt -DKPM_VERSION=$KPM_VERSION --cmake-opt -DE2AP_VERSION=$E2AP_VERSION \
|
|
--noavx512 \
|
|
--build-tool-opt -k10 \
|
|
--cmake-opt -DCMAKE_C_FLAGS="-Werror" --cmake-opt -DCMAKE_CXX_FLAGS="-Werror" $BUILD_OPTION && \
|
|
# Mainly to see if the sanitize option was perfectly executed
|
|
echo "---- ldd on executables ----" && \
|
|
ldd ran_build/build/*softmodem* ran_build/build/nr-cuup ran_build/build/oairu && \
|
|
echo "---- ldd on shared libraries ----" && \
|
|
ldd ran_build/build/*.so
|
|
|
|
## Build FlexRIC for SM Models
|
|
RUN \
|
|
# Mount CCache cache direrctory
|
|
--mount=type=cache,target=/root/.cache/ccache/ \
|
|
mkdir -p openair2/E2AP/flexric/build && \
|
|
cd openair2/E2AP/flexric/build && \
|
|
cmake -GNinja -DCMAKE_BUILD_TYPE=Release \
|
|
-DKPM_VERSION=$KPM_VERSION \
|
|
-DE2AP_VERSION=$E2AP_VERSION \
|
|
-DCMAKE_C_COMPILER=gcc-12 \
|
|
-DCMAKE_CXX_COMPILER=g++-12 .. && \
|
|
ninja && \
|
|
ninja install
|