summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorAndrew Elder <aelder@audioscience.com>2014-10-20 21:54:08 -0400
committerAndrew Elder <aelder@audioscience.com>2014-10-21 07:59:05 -0400
commita33f43442ba369b8ced9c8dfe18aa86c6c13cbb6 (patch)
tree5c71e5fa76941ff3f0714e57b512310a433608fa /travis.sh
parentba60b5acc72823d2db849c2f9acf0bb873185b5c (diff)
downloadOpen-AVB-a33f43442ba369b8ced9c8dfe18aa86c6c13cbb6.tar.gz
travis build updates, use cmake and cpputest test target to enable execution of cpputest(s)
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
new file mode 100755
index 00000000..d76979fb
--- /dev/null
+++ b/travis.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+set -ev
+make igb
+make lib
+make daemons_all
+make examples_all
+mkdir build
+cd build
+cmake .. -G "Unix Makefiles"
+make
+make test
+