You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
720 B
23 lines
720 B
language: c
|
|
before_install:
|
|
- pushd $HOME
|
|
- if [ ! -d arduino-1.6.7 ]; then wget http://downloads.arduino.cc/arduino-1.6.7-linux64.tar.xz && tar xf arduino-1.6.7-linux64.tar.xz; fi
|
|
- popd
|
|
install:
|
|
- mkdir ../libs
|
|
- pushd ../libs
|
|
- git clone https://github.com/keyboardio/KeyboardioScanner.git
|
|
- git clone https://github.com/keyboardio/KeyboardioWS2812.git
|
|
- git clone https://github.com/keyboardio/HID.git
|
|
- git clone https://github.com/keyboardio/KeyboardioSX1509.git
|
|
- popd
|
|
script:
|
|
- make compile size ARDUINO_PATH=$HOME/arduino-1.6.7 ARDUINO_LOCAL_LIB_PATH=../libs
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
cache:
|
|
- ccache
|
|
- directories:
|
|
- $HOME/arduino-1.6.7 |