From c62f21e44c34c0120ecc75ad4c2c03436625edb1 Mon Sep 17 00:00:00 2001 From: Piotr Krysik Date: Thu, 22 Mar 2018 08:20:24 +0100 Subject: Fixing Ubuntu 16.04 no libosmocore test --- tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker b/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker index 5c74f6b..879189e 100644 --- a/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker +++ b/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker @@ -5,6 +5,7 @@ RUN apt-get update && apt-get install -y \ cmake \ autoconf \ libtool \ + pkg-config \ build-essential \ python-docutils \ libcppunit-dev \ @@ -21,7 +22,10 @@ RUN ls /src RUN mkdir /src/build WORKDIR /src/build RUN cmake .. && \ - make && \ + # 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 test -- cgit v1.2.3