Skip to content

Commit 36d6dc2

Browse files
authored
Create .travis.yml
1 parent ae87cf5 commit 36d6dc2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-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+
"sudo mv arduino-1.6.9 /usr/local/share/arduino",
10+
"sudo ln -s /usr/local/share/arduino/arduino /usr/local/bin/arduino"
11+
],
12+
"install": [
13+
"ln -s $PWD /usr/local/share/arduino/libraries/ArduinoLog"
14+
],
15+
"script": [
16+
"arduino --verify --board arduino:avr:uno $PWD/examples/Log/Log.ino",
17+
],
18+
"group": "stable",
19+
"dist": "precise",
20+
"os": "linux"
21+
}

0 commit comments

Comments
 (0)