-
Notifications
You must be signed in to change notification settings - Fork 22
/
.travis.yml
26 lines (25 loc) · 922 Bytes
/
.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
language: python
python:
- "2.7"
# Cache PlatformIO packages using Travis CI container-based infrastructure
sudo: false
cache:
directories:
- "~/.platformio"
env:
- PLATFORMIO_CI_SRC=examples/wifi-basic
- PLATFORMIO_CI_SRC=examples/wifi-full-options-config
- PLATFORMIO_CI_SRC=examples/wifi-basic-http-get
- PLATFORMIO_CI_SRC=examples/wifi-webserver-with-io
- PLATFORMIO_CI_SRC=examples/wifi-webserver-with-html
- PLATFORMIO_CI_SRC=examples/wifi-webserver-with-basic-angularjs
- PLATFORMIO_CI_SRC=examples/wifi-webserver-serve-static-files
install:
- pip install -U platformio
script:
- python extra_ci.py
- find .
- platformio run --target clean
#- platformio ci --board=espresso_lite_v2 --lib="."
- platformio ci --board=espresso_lite_v2 --lib="pio_compile_here"
# - export PLATFORMIO_BUILD_FLAGS='-DWIFI_SSID="Nat" -DWIFI_PASSPHRASE="123456789"'