forked from step21/desfire_rfid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (26 loc) · 1.01 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
25
26
27
28
29
30
31
language: cpp
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-${IDE_VERSION}-linux64.tar.xz
- tar xf arduino-${IDE_VERSION}-linux64.tar.xz
- sudo mv arduino-${IDE_VERSION} /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/MicroDebug
script:
- arduino --verify --board ${BOARD} $PWD/examples/DoorOpenerSketch.ino
# - arduino --verify --board ${BOARD} $PWD/examples/LedDebug/LedDebug.ino
# - arduino --verify --board ${BOARD} $PWD/examples/SerialDebug/SerialDebug.ino
notifications:
email:
on_success: change
on_failure: change
env:
global:
- IDE_VERSION=1.8.8
matrix:
- BOARD=arduino:avr:uno IDE_VERSION=1.8.8
- BOARD=arduino:esp:esp32
- BOARD=arduino:esp:esp8266