Skip to content

Commit 407c0cc

Browse files
committed
2 parents ba22000 + 8e0e70e commit 407c0cc

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"language": "c",
3+
"before_install": [
4+
"/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16",
5+
"sleep 3",
6+
"export DISPLAY=:1.0",
7+
"wget http://downloads.arduino.cc/arduino-1.6.9-linux64.tar.xz",
8+
"tar xf arduino-1.6.9-linux64.tar.xz"
9+
],
10+
"install": [
11+
],
12+
"script": [
13+
"sudo cp -r arduino-1.6.9 /usr/local/share/arduino",
14+
"sudo ln -s /usr/local/share/arduino/arduino /usr/local/bin/arduino",
15+
"sudo ln -s $PWD /usr/local/share/arduino/libraries/ArduinoLog",
16+
"arduino --verify --board arduino:avr:uno $PWD/examples/Log/Log.ino",
17+
],
18+
"group": "stable",
19+
"dist": "precise",
20+
"os": "linux"
21+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
ArduinoLog - C++ Log library for Arduino devices
22
====================
3+
[![Build Status](https://travis-ci.org/thijse/Arduino-Log.svg?branch=master)](https://travis-ci.org/thijse/Arduino-Log)
4+
[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
35

46
*An minimalistic Logging framework for Arduino-compatible embedded systems.*
57

0 commit comments

Comments
 (0)