From 11fa72bfd22fc0420a40c12cc81f0bef008c46e4 Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 29 Mar 2016 17:29:44 -0400 Subject: Remove line containing PRId64 This was causing issues with certain compilers, and the code is never run. --- src/components/application_manager/src/message_helper.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/application_manager/src/message_helper.cc b/src/components/application_manager/src/message_helper.cc index adb4f94457..fd42305f77 100644 --- a/src/components/application_manager/src/message_helper.cc +++ b/src/components/application_manager/src/message_helper.cc @@ -2596,7 +2596,6 @@ bool MessageHelper::PrintSmartObject(const smart_objects::SmartObject& object) { break; } case NsSmartDeviceLink::NsSmartObjects::SmartType_Integer: - printf("%" PRId64 "\n", object.asInt64()); break; case NsSmartDeviceLink::NsSmartObjects::SmartType_String: printf("%s", object.asString().c_str()); -- cgit v1.2.1 From 1e81e09b18359520d0c58485a2b3810e7b5dac98 Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 29 Mar 2016 17:32:21 -0400 Subject: Add .travis.yml to trigger travis-ci build --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml 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 -- cgit v1.2.1 From ad68c5d08986bb134651d06d22b4860c610b1f0f Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Wed, 30 Mar 2016 07:44:06 -0400 Subject: Added travis-ci build status --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c372e01442..ac10996e78 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ [![Slack Status](http://sdlslack.herokuapp.com/badge.svg)](http://slack.smartdevicelink.org) - + +[![Build Status](https://travis-ci.org/smartdevicelink/sdl_core.svg?branch=master)](https://travis-ci.org/smartdevicelink/sdl_core) + # SmartDeviceLink (SDL) SmartDeviceLink (SDL) is a standard set of protocols and messages that connect applications on a smartphone to a vehicle head unit. This messaging enables a consumer to interact with their application using common in-vehicle interfaces such as a touch screen display, embedded voice recognition, steering wheel controls and various vehicle knobs and buttons. There are three main components that make up the SDL ecosystem. -- cgit v1.2.1