We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e53f61b commit 2c54855Copy full SHA for 2c54855
.travis.yml
@@ -1,12 +1,19 @@
1
-language: c++
+language: python
2
+python:
3
+ - "2.7"
4
+
5
+# Cache PlatformIO packages using Travis CI container-based infrastructure
6
sudo: false
-before_install:
- - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
7
+cache:
8
+ directories:
9
+ - "~/.platformio"
10
11
+env:
12
+ - PLATFORMIO_CI_SRC=examples/delay/delay.ino
13
+ - PLATFORMIO_CI_SRC=examples/repeat/repeat.ino
14
15
install:
- - arduino
16
+ - pip install -U platformio
17
18
script:
- - build_main_platforms
-notifications:
- email:
- on_success: change
- on_failure: change
19
+ - platformio ci --lib="." --board=uno
0 commit comments