Merge pull request #17 from dmadison/travis-ci

Travis CI
This commit is contained in:
David Madison 2018-10-18 17:15:56 -04:00 committed by GitHub
commit a56f4c7368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 2 deletions

50
.travis.yml Normal file
View File

@ -0,0 +1,50 @@
language: C
env:
global:
- IDE_VERSION=1.8.1
matrix:
include:
- name: "WS2812B"
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
# Install Arduino IDE
- 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 Libraries
- arduino --install-library "FastLED:3.2.0"
# Sketch Compiling Functions
- CYAN="\033[36m"; YELLOW="\033[33m"; NOC="\033[0m";
- buildSketchPath() {
echo -e "\n${CYAN}Building sketch ${1##*/}${NOC}";
arduino --verify --board $BOARD "$1";
}
- buildAllSketches() {
for f in $(find $PWD -name '*.ino');
do
buildSketchPath $f;
done;
}
- buildBoard() {
export BOARD="$1";
echo -e "\n${YELLOW}Now using board $BOARD${NOC}";
buildAllSketches;
}
script:
- buildBoard "arduino:avr:uno"
- buildBoard "arduino:avr:nano:cpu=atmega328"
- buildBoard "arduino:avr:leonardo"
- buildBoard "arduino:avr:mega:cpu=atmega2560"
notifications:
email:
on_success: change
on_failure: change

View File

@ -250,6 +250,6 @@ void timeouts(){
void serialFlush(){
while(Serial.available() > 0) {
byte r = Serial.read();
Serial.read();
}
}

View File

@ -1,4 +1,4 @@
# Adalight-FastLED
# Adalight-FastLED [![Build Status](https://travis-ci.org/dmadison/Adalight-FastLED.svg?branch=master)](https://travis-ci.org/dmadison/Adalight-FastLED)
![Adalight-Rainbow](http://i.imgur.com/sHygxq9.jpg)