forked from thijse/Arduino-CmdMessenger
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
24 lines (24 loc) · 1.35 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: c
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
- sleep 3
- export DISPLAY=:1.0
- wget http://downloads.arduino.cc/arduino-1.8.1-linux64.tar.xz
- tar xf arduino-1.8.1-linux64.tar.xz
- sudo mv arduino-1.8.1 /usr/local/share/arduino
- sudo ln -s /usr/local/share/arduino/arduino /usr/local/bin/arduino
install:
- ln -s $PWD /usr/local/share/arduino/libraries/CmdMessenger
script:
- arduino --verify --board arduino:avr:uno $PWD/examples/ArduinoController/ArduinoController.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/CmdMessengerTest/CmdMessengerTest.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/ConsoleShell/ConsoleShell.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/DataLogging/DataLogging.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/Receive/Receive.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/SendAndReceive/SendAndReceive.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/SendAndReceiveArguments/SendAndReceiveArguments.ino
- arduino --verify --board arduino:avr:uno $PWD/examples/SendAndReceiveBinaryArguments/SendAndReceiveBinaryArguments.ino
notifications:
email:
on_success: change
on_failure: change