Skip to content

Commit

Permalink
travis: Test in Ubuntu 18.04 container
Browse files Browse the repository at this point in the history
- Install gnuradio from the new official PPA repository
  https://launchpad.net/~gnuradio/+archive/ubuntu/gnuradio-releases

Change-Id: Iaa8813ab0ae91b667285ab3ef42ffaa279e3a885
  • Loading branch information
velichkov authored and ptrkrysik committed May 3, 2021
1 parent dfcf7fd commit e05ada3
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build*
.git
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
# - DOCKERFILE=tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker IMGNAME=ubu16.04-grgsm-nolibosmo
- DOCKERFILE=tests/dockerfiles/Kali.docker IMGNAME=kali-grgsm
# - DOCKERFILE=tests/dockerfiles/Fedora_26.Dockerfile IMGNAME=fedora26-grgsm
- DOCKERFILE=tests/dockerfiles/Ubuntu_18_04_gnuradio_ppa.docker IMGNAME=ubuntu_18_04_gnuradio_ppa


services:
Expand Down
51 changes: 51 additions & 0 deletions tests/dockerfiles/Ubuntu_18_04_gnuradio_ppa.docker
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
FROM ubuntu:18.04
MAINTAINER Vasil Velichkov

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
software-properties-common && \
add-apt-repository --yes ppa:gnuradio/gnuradio-releases && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
git \
cmake \
autoconf \
libtool \
pkg-config \
build-essential \
python-docutils \
libcppunit-dev \
swig \
doxygen \
liblog4cpp5-dev \
python-scipy \
gnuradio-dev gnuradio libgmp-dev libboost-regex-dev liborc-dev libuhd-dev \
libosmocore-dev

RUN git clone --branch maint-3.8 --recurse-submodules https://github.com/velichkov/gr-iqbal && \
cd gr-iqbal && \
mkdir build && \
cd build && \
cmake -DENABLE_DOXYGEN=OFF .. && \
make -j $(nproc) install

RUN git clone --branch maint-3.8 https://github.com/velichkov/gr-osmosdr && \
cd gr-osmosdr && \
mkdir build && \
cd build && \
cmake -DENABLE_DOXYGEN=OFF .. && \
make -j $(nproc) install

COPY ./ /src/
RUN mkdir /src/build
WORKDIR /src/build

#PYTHONPATH is needed as gr-osmosdr gets installed in /usr/local/lib/python3/...
ENV PYTHONPATH=/usr/local/lib/python3/dist-packages/:$PYTHONPATH

RUN cmake .. && \
# The parallel build sometimes fails when the .grc_gnuradio
# and .gnuradio directories do not exist
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \
make -j $(nproc) && \
make install && \
ldconfig && \
make CTEST_OUTPUT_ON_FAILURE=1 test

0 comments on commit e05ada3

Please sign in to comment.