-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
60 lines (50 loc) · 1.64 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
########################################################################
## Travis CI config for SoapyOsmo
##
## * installs Miri, Osmo, and Airspy
## * installs SoapySDR from source
## * confirms build and install
## * checks that drivers load
########################################################################
sudo: required
dist: trusty
language: cpp
compiler: gcc
env:
global:
- INSTALL_PREFIX=/usr/local
- SOAPY_SDR_BRANCH=master
matrix:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
# regular ubuntu packages
- sudo add-apt-repository main
- sudo add-apt-repository universe
# driver development files from ppa
- sudo add-apt-repository -y ppa:myriadrf/drivers
# update after package changes
- sudo apt-get update
install:
#boost development files
- sudo apt-get install -qq libboost-all-dev
#sdr development files
- sudo apt-get install -qq libosmosdr-dev libmirisdr-dev
# install SoapySDR from source
- git clone https://github.com/pothosware/SoapySDR.git
- pushd SoapySDR
- git checkout ${SOAPY_SDR_BRANCH}
- mkdir build && cd build
- cmake ../ -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DENABLE_PYTHON=OFF -DENABLE_PYTHON3=OFF
- make && sudo make install
- popd
script:
- mkdir build && cd build
- cmake ../ -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
- make && sudo make install
# print info about the install
- export LD_LIBRARY_PATH=${INSTALL_PREFIX}/lib:${LD_LIBRARY_PATH}
- export PATH=${INSTALL_PREFIX}/bin:${PATH}
- SoapySDRUtil --info
- SoapySDRUtil --check=miri
- SoapySDRUtil --check=osmosdr