-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (27 loc) · 788 Bytes
/
.travis.yml
File metadata and controls
31 lines (27 loc) · 788 Bytes
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
# Test build the arduino library with Travis CI and PlatformIO
language: python
# Cache PlatformIO packages using Travis CI container-based infrastructure
sudo: false
cache:
directories:
- "~/.platformio"
matrix:
fast_finish: true
include:
- env: BOARD=megaatmega2560
- env: BOARD=due
- env: BOARD=leonardo
- env: BOARD=uno
allow_failures:
- env: BOARD=due
- env: BOARD=leonardo
install:
- pip install -U platformio
- platformio lib install https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library.git https://github.com/FireCastLabs/I2C_ESC.git
# library example testing
script:
#- set -eo pipefail;
#for e in examples/*; do
# platformio ci --board=$BOARD --lib=. $e/*;
#done
platformio ci --board=$BOARD --lib="." ArrayESC.ino;