[travis] Make the arduino download verbose (and move it from $HOME)

pull/18/head
Jesse Vincent 9 years ago
parent 36a49e3829
commit 1b67ff539d

@ -1,7 +1,7 @@
language: c language: c
before_install: before_install:
- pushd $HOME - pushd ..
- 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 - if [ ! -d arduino-1.6.7 ]; then wget -v http://downloads.arduino.cc/arduino-1.6.7-linux64.tar.xz && tar xvf arduino-1.6.7-linux64.tar.xz; fi
- popd - popd
install: install:
- mkdir ../libs - mkdir ../libs
@ -12,7 +12,7 @@ install:
- git clone https://github.com/keyboardio/KeyboardioSX1509.git - git clone https://github.com/keyboardio/KeyboardioSX1509.git
- popd - popd
script: script:
- make compile size ARDUINO_PATH=$HOME/arduino-1.6.7 ARDUINO_LOCAL_LIB_PATH=../libs - make compile size ARDUINO_PATH=../arduino-1.6.7 ARDUINO_LOCAL_LIB_PATH=../libs
notifications: notifications:
email: email:
on_success: change on_success: change
@ -20,4 +20,4 @@ notifications:
cache: cache:
- ccache - ccache
- directories: - directories:
- $HOME/arduino-1.6.7 - ../arduino-1.6.7
Loading…
Cancel
Save