Added experimental test for pybombs installation on Ubuntu 15.04

This commit is contained in:
Piotr Krysik 2016-03-13 21:18:15 +01:00
parent ca594c3880
commit 1b10c6d9d1
2 changed files with 18 additions and 0 deletions

View File

@ -3,11 +3,13 @@ sudo: required
language: ruby
env:
- DOCKERFILE=dockerfiles/Ubuntu15_pybombs.docker IMGNAME=ubu15_pybombs-grgsm
- DOCKERFILE=dockerfiles/DebianJessie.docker IMGNAME=debjess-grgsm
# - DOCKERFILE=dockerfiles/Ubuntu14.docker IMGNAME=ubu14-grgsm
- DOCKERFILE=dockerfiles/Ubuntu15.docker IMGNAME=ubu15-grgsm
# - DOCKERFILE=dockerfiles/Kali.docker IMGNAME=kali-grgsm
services:
- docker

View File

@ -0,0 +1,16 @@
FROM ubuntu:15.04
MAINTAINER Piotr Krysik
# 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 update && apt-get install -y git python-pip
RUN pip install PyBOMBS
RUN pybombs prefix init /usr/local -a default_prx
RUN pybombs config default_prefix default_prx
RUN pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
RUN pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
RUN pybombs install gr-gsm
RUN ldconfig