debian-stretch-jenkins: install osmo-trx depends

Add liblimesuite-dev and libuhd-dev, so we can successfully build
osmo-trx in docker in master-builds and gerrit-verifications.

Related: OS#5055
Change-Id: Ieec31fd6a2034c4430be81afd1d370816cd577d5
This commit is contained in:
Oliver Smith 2021-03-09 09:29:21 +01:00
parent 2c846f60e6
commit a9c315dad6
1 changed files with 5 additions and 1 deletions

View File

@ -166,7 +166,9 @@ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
update-locale LANG=en_US.UTF-8
ENV LANG en_US.UTF-8
# osmo-remsim needs libulfius which is built in osmocom OBS repos:
# Install packages from Osmocom OBS repositories:
# * osmo-remsim: libulfius
# * osmo-trx: liblimesuite-dev, libuhd-dev
ARG OSMOCOM_REPO="$OSMOCOM_REPO_MIRROR/repositories/network:/osmocom:/nightly/Debian_9.0/"
COPY Release.key /tmp/Release.key
RUN apt-key add /tmp/Release.key && \
@ -175,6 +177,8 @@ RUN apt-key add /tmp/Release.key && \
ADD $OSMOCOM_REPO/Release /tmp/Release
RUN apt-get update && \
apt-get install -y --no-install-recommends \
liblimesuite-dev \
libuhd-dev \
libulfius-dev && \
apt-get clean