19 lines
No EOL
598 B
YAML
19 lines
No EOL
598 B
YAML
language: c
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- ~/arduino_ide
|
|
- ~/.arduino15/packages/
|
|
git:
|
|
depth: false
|
|
quiet: true
|
|
env:
|
|
global:
|
|
# You can uncomment this to explicitly choose an (old) version of the Arduino IDE
|
|
#- ARDUINO_IDE_VERSION="1.8.7"
|
|
before_install:
|
|
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
|
|
install:
|
|
- if [ ! -d "$HOME/arduino_ide/libraries/EthernetLarge" ]; then git clone https://github.com/OPEnSLab-OSU/EthernetLarge.git $HOME/arduino_ide/libraries/EthernetLarge; fi
|
|
script:
|
|
- build_platform zero |