forked from blynkkk/blynk-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
58 lines (54 loc) · 2.94 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
language: python
python:
- "2.7"
env:
- LINUX_SRC=linux
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_Ethernet
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_Ethernet_Manual
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_Serial_USB
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_SoftwareSerial
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_WiFi
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/Arduino_Yun
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/CC3000
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/ENC28J60
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/ESP8266_Standalone PLATFORMIO_CI_BOARDS_ARGS="--board=esp01"
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/ESP8266_DirectConnect PLATFORMIO_CI_BOARDS_ARGS="--board=esp01"
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/RN_XV_WiFly PLATFORMIO_CI_BOARDS_ARGS="--board=leonardo"
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/TinyDuino_WiFi PLATFORMIO_CI_BOARDS_ARGS="--board=tinyduino"
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/WildFire PLATFORMIO_CI_BOARDS_ARGS="--board=wildfirev3"
- PLATFORMIO_CI_SRC=examples/BoardsAndShields/User_Defined_Connection
# PLATFORMIO_CI_SRC=examples/BoardsAndShields/LinkItONE
# PLATFORMIO_CI_SRC=examples/BoardsAndShields/ESP8266_Shield
# PLATFORMIO_CI_SRC=examples/BoardsAndShields/Seeed_EthernetV2_0
- PLATFORMIO_CI_SRC=examples/GettingStarted/BlynkBlink
- PLATFORMIO_CI_SRC=examples/GettingStarted/PushData
- PLATFORMIO_CI_SRC=examples/GettingStarted/PushDataOnRequest
- PLATFORMIO_CI_SRC=examples/GettingStarted/Servo
- PLATFORMIO_CI_SRC=examples/More/ButtonInterrupt
- PLATFORMIO_CI_SRC=examples/More/ButtonPoll
- PLATFORMIO_CI_SRC=examples/More/NeoPixel
- PLATFORMIO_CI_SRC=examples/More/Stroboscope
- PLATFORMIO_CI_SRC=examples/Widgets/Bridge
- PLATFORMIO_CI_SRC=examples/Widgets/Email
- PLATFORMIO_CI_SRC=examples/Widgets/JoystickOneAxis
- PLATFORMIO_CI_SRC=examples/Widgets/JoystickTwoAxis
- PLATFORMIO_CI_SRC=examples/Widgets/LCD
- PLATFORMIO_CI_SRC=examples/Widgets/LED
- PLATFORMIO_CI_SRC=examples/Widgets/PushNotification
- PLATFORMIO_CI_SRC=examples/Widgets/SDcard
- PLATFORMIO_CI_SRC=examples/Widgets/Terminal
- PLATFORMIO_CI_SRC=examples/Widgets/Twitter
install:
- python -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/master/scripts/get-platformio.py)"
#
# Libraries from PlatformIO Library Registry:
#
# http://platformio.org/#!/lib/show/17/Adafruit-CC3000
# http://platformio.org/#!/lib/show/28/SPI4Teensy3
# http://platformio.org/#!/lib/show/91/UIPEthernet
# http://platformio.org/#!/lib/show/418/WildFireCore
# http://platformio.org/#!/lib/show/419/SimpleTimer
# http://platformio.org/#!/lib/show/420/WildFire-CC3000
# http://platformio.org/#!/lib/show/65/WiFlyHQ
- platformio lib install 17 28 91 418 419 420 65
script: make travis-build