Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcliffe committed Jan 8, 2019
1 parent ae6fb35 commit 3448f40
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .travis.yml
@@ -1,10 +1,40 @@
dist: trusty
language: cpp
script: cmake
addons:
apt:
packages:
- libpulse-dev
- libgtk-3-dev
- freeglut3
- freeglut3-dev

script:
# Liquid-DSP
mkdir jgaeddert/
git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp
pushd .
cd jgaeddert/liquid-dsp/
./bootstrap.sh
./configure
make
sudo make install
popd

# Soapy SDR
mkdir pothosware/
git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR
mkdir pothosware/SoapySDR-build
cmake pothosware/SoapySDR pothosware/SoapySDR-build
pushd .
cd pothosware/SoapySDR-build
make
sudo make install
popd

# CubicSDR
mkdir cjcliffe/CubicSDR-build
cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build
pushd .
cd cjcliffe/CubicSDR-build
make

0 comments on commit 3448f40

Please sign in to comment.