-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy path.travis.yml
70 lines (69 loc) · 2.72 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: c
sudo: false
branches:
except:
- gh-pages
env:
global:
- PRETTYNAME="GUIslice embedded GUI library for Arduino & Raspberry Pi"
addons:
apt:
packages:
- doxygen
- doxygen-doc
- doxygen-gui
- graphviz
before_install:
- # Compiling via Arduino IDE per: https://stackoverflow.com/questions/28510001/how-to-set-up-travis-to-build-arduino-spark-teensy-library
- ARD_VER="1.8.5"
- "/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 5
- export DISPLAY=:1.0
- echo "Downloading version $ARD_VER of the Arduino IDE..."
- wget http://downloads.arduino.cc/arduino-$ARD_VER-linux64.tar.xz
- echo "Extracting the Arduino IDE..."
- tar xf arduino-$ARD_VER-linux64.tar.xz
- echo "Moving Arduino IDE..."
- sudo mv arduino-$ARD_VER /usr/local/share/arduino
- echo "Linking Arduino IDE..."
- sudo ln -s /usr/local/share/arduino/arduino /usr/local/bin/arduino
- echo "Removing Arduino IDE ver $ARD_VER tar that was downloaded..."
- rm arduino-$ARD_VER-linux64.tar.xz
install:
- ln -s $PWD /usr/local/share/arduino/libraries/GUIslice
- arduino --install-library "Adafruit GFX Library,Adafruit ILI9341,Adafruit STMPE610,Adafruit BusIO"
script:
- # ------------------------------
- # TESTCASE 1
- # ------------------------------
- echo "=== TESTCASE 1 UNO + Display + NoTouch + FLASH"
- # Select config
- GUISLICE_CONFIG="ard-adagfx-ili9341-notouch.h"
- echo "Selecting config=[$GUISLICE_CONFIG]"
- mv $PWD/src/GUIslice_config.h $PWD/src/GUIslice_config.h.bak
- sed "s/^.*my-config.*/#include \"..\/configs\/$GUISLICE_CONFIG\" \/\/ my-config/" $PWD/src/GUIslice_config.h.bak > $PWD/src/GUIslice_config.h
- # Run the regression
- arduino --verify --board arduino:avr:uno $PWD/examples/arduino_min/ex07_ardmin_slider/ex07_ardmin_slider.ino
- # ------------------------------
- # TESTCASE 2
- # ------------------------------
- echo "=== TESTCASE 2 ATmega2560 + Display + Touch"
- # Select config
- GUISLICE_CONFIG="ard-adagfx-ili9341-stmpe610.h"
- echo "Selecting config=[$GUISLICE_CONFIG]"
- mv $PWD/src/GUIslice_config.h $PWD/src/GUIslice_config.h.bak
- sed "s/^.*my-config.*/#include \"..\/configs\/$GUISLICE_CONFIG\" \/\/ my-config/" $PWD/src/GUIslice_config.h.bak > $PWD/src/GUIslice_config.h
- # Run the regression
- arduino --verify --board arduino:avr:mega:cpu=atmega2560 $PWD/examples/arduino/ex07_ard_slider/ex07_ard_slider.ino
- doxygen doxygen.conf
deploy:
provider: pages
skip_cleanup: true
local_dir: docs/html
github_token: $GH_REPO_TOKEN
on:
branch: master
notifications:
email:
on_success: change
on_failure: change