aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2016-04-11 22:21:20 +0200
committerPiotr Krysik <ptrkrysik@gmail.com>2016-04-11 22:21:20 +0200
commitd189ad17356be1060c29bf1c1b87f80196a0dc8a (patch)
treef818f955a25280ebe2ed2991f01cd99f34a2d957 /tests
parent533f58ad8327f967267e5b23d24dc316218681f1 (diff)
Added Ubuntu 16.04 docker file. Commented out other files from the travis.yml
Diffstat (limited to 'tests')
-rw-r--r--tests/dockerfiles/Ubuntu_16_04.docker65
1 files changed, 65 insertions, 0 deletions
diff --git a/tests/dockerfiles/Ubuntu_16_04.docker b/tests/dockerfiles/Ubuntu_16_04.docker
new file mode 100644
index 0000000..2340fed
--- /dev/null
+++ b/tests/dockerfiles/Ubuntu_16_04.docker
@@ -0,0 +1,65 @@
+FROM ubuntu:16.04
+MAINTAINER Ash Wilson
+
+# We know it's going to foul up, so we run this install separately and then ...fix... dpkg status
+RUN apt-get update && apt-get install -y uhd-host || \
+ sed -i "s/Status: install ok half-configured/Status: install ok installed/g" /var/lib/dpkg/status
+
+RUN apt-get install -y \
+ git \
+ python \
+ python-scipy \
+ cmake \
+ make \
+ autoconf \
+ automake \
+ cpp-4.9 \
+ gcc \
+ g++ \
+ libstdc++-4.9-dev \
+ libcppunit-dev \
+ swig \
+ doxygen \
+ liblog4cpp5v5 \
+ liblog4cpp5-dev \
+ build-essential \
+ libtool \
+ shtool \
+ pkg-config \
+ libpcsclite-dev \
+ gnuradio \
+ gnuradio-dev \
+ gr-osmosdr \
+ libfftw3-dev \
+ libusb-1.0-0-dev \
+ libvolk1-dev \
+ libvolk1.1 \
+ libboost-all-dev \
+ libgnuradio-osmosdr0.1.4 \
+ libmirisdr0 \
+ libosmosdr-dev \
+ libosmosdr0 \
+ librtlsdr-dev \
+ librtlsdr0 \
+ osmo-sdr \
+ rtl-sdr \
+ wget \
+ python-talloc-dev \
+ libtalloc2 \
+ libtalloc-dev \
+ unzip \
+ libosmocore-dev
+
+COPY ./ /src/
+
+RUN mkdir /root/.gnuradio/
+RUN echo "[grc]\nlocal_blocks_path=/usr/local/share/gnuradio/grc/blocks" > \
+ /root/.gnuradio/config.conf
+
+RUN mkdir /src/build && \
+ cd /src/build && \
+ cmake .. && \
+ make && \
+ # make test && \
+ make install && \
+ ldconfig