File tree 3 files changed +31
-0
lines changed
3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : cpp
2
+ compiler :
3
+ - gcc
4
+ # git submodules workaround
5
+ git :
6
+ submodules : false
7
+ # use sed to replace SSH URL with the public URL, then init submodules
8
+ before_install :
9
+ -
sed -i 's/[email protected] :/https:\/\/github.com\//' .gitmodules
10
+ - git submodule update --init --recursive
11
+ - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
12
+ - sudo apt-get update -qq
13
+ - sudo apt-get install -y libpcap-dev linux-headers-3.13.0-36-generic cmake
14
+ - if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi
15
+ - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
16
+ - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
17
+ env : BUILD_KERNEL=3.13.0-36-generic
18
+ install :
19
+ script : ./travis.sh
Original file line number Diff line number Diff line change
1
+
2
+ Build status
3
+
4
+ [ ![ Build Status] ( https://travis-ci.org/andrew-elder/avdecc-lib.svg?branch=staging )] ( https://travis-ci.org/andrew-elder/avdecc-lib )
5
+
1
6
avdecc-lib
2
7
==========
3
8
@@ -400,3 +405,4 @@ Release Notes
400
405
=============
401
406
402
407
None so far.
408
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -ev
3
+ mkdir build
4
+ cd build
5
+ cmake .. -G " Unix Makefiles"
6
+ make
You can’t perform that action at this time.
0 commit comments