File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+ language : bash
3
+ os :
4
+ - linux
5
+
6
+ script :
7
+ - /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16
8
+ - sleep 3
9
+ - export DISPLAY=:1.0
10
+ - wget http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz
11
+ - tar xf arduino-1.6.5-linux64.tar.xz
12
+ - mv arduino-1.6.5 $HOME/arduino_ide
13
+ - export PATH="$HOME/arduino_ide:$PATH"
14
+ - which arduino
15
+ - mkdir -p $HOME/Arduino/libraries
16
+ - cp -r $TRAVIS_BUILD_DIR $HOME/Arduino/libraries/arduinoWebSockets
17
+ - cd $HOME/arduino_ide/hardware
18
+ - mkdir esp8266com
19
+ - cd esp8266com
20
+ - git clone https://github.com/esp8266/Arduino.git esp8266
21
+ - cd esp8266/tools
22
+ - python get.py
23
+ - source $TRAVIS_BUILD_DIR/travis/common.sh
24
+ - arduino --board esp8266com:esp8266:generic --save-prefs
25
+ - arduino --get-pref sketchbook.path
26
+ - build_sketches arduino $HOME/Arduino/libraries/arduinoWebSockets esp8266
27
+
28
+ notifications :
29
+ email :
30
+ on_success : change
31
+ on_failure : change
32
+ webhooks :
33
+ urls :
34
+ - https://webhooks.gitter.im/e/1aa78fbe15080b0c2e37
35
+ on_success : change # options: [always|never|change] default: always
36
+ on_failure : always # options: [always|never|change] default: always
37
+ on_start : false # default: false
You can’t perform that action at this time.
0 commit comments