mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-17 07:14:55 +00:00
32 lines
1.4 KiB
YAML
32 lines
1.4 KiB
YAML
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
cache: apt
|
|
|
|
|
|
script:
|
|
- builddir="${TRAVIS_BUILD_DIR}/src/_build"
|
|
- mkdir -p ${builddir}
|
|
- cd ${builddir}
|
|
- cmake ..
|
|
- make
|
|
|
|
|
|
before_install:
|
|
- cat /proc/cpuinfo
|
|
- sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) multiverse"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) restricted"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty universe"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty partner"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty multiverse"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty"
|
|
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
- sudo apt-get update -qq
|
|
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
- if [ "$CXX" = "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
|
|
- sudo apt-get install -y cmake git-core g++ libstdc++-4.8-dev libboost-dev gnuradio libarmadillo-dev liblapack-dev libopenblas-dev gfortran48 libssl-dev |