summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAGaliuzov <AGaliuzov@luxoft.com>2016-03-30 13:07:52 +0300
committerAGaliuzov <AGaliuzov@luxoft.com>2016-03-30 13:07:52 +0300
commit3a3799d6d8e2cdc0fb0709b68305a5bad00b68eb (patch)
tree921b84057c0af3a9abd0a44600e05aa0f64c100e
parent487187d690a18653bb6aa85daf3331c5e613ed70 (diff)
parent1e81e09b18359520d0c58485a2b3810e7b5dac98 (diff)
downloadsdl_core-3a3799d6d8e2cdc0fb0709b68305a5bad00b68eb.tar.gz
Merge pull request #448 from smartdevicelink/hotfix/445
Add .travis.yml to trigger travis-ci build
-rw-r--r--.travis.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000..eea4331127
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,15 @@
+language: cpp
+addons:
+ apt:
+ sources:
+ - travis-ci/sqlite3
+ packages:
+ - sqlite3
+before_install:
+ - sudo apt-get -qq update
+ - sudo apt-get install -y libavahi-client-dev libssl-dev libbluetooth3 libbluetooth-dev bluez-tools libudev-dev
+ - sudo add-apt-repository ppa:kalakris/cmake -y
+ - sudo apt-get update -q
+ - sudo apt-get install -y cmake
+script:
+ - mkdir build && cd build && cmake ../ && make && make install \ No newline at end of file