travis: Test in Ubuntu 18.04 container

- Install gnuradio from the new official PPA repository
  https://launchpad.net/~gnuradio/+archive/ubuntu/gnuradio-releases

Change-Id: Iaa8813ab0ae91b667285ab3ef42ffaa279e3a885
This commit is contained in:
Vasil Velichkov 2019-11-14 23:55:32 +02:00 committed by Piotr Krysik
parent dfcf7fd5a3
commit e05ada3a78
3 changed files with 53 additions and 0 deletions

View File

@ -1 +1,2 @@
build*
.git

View File

@ -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:

View File

@ -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