11 lines
222 B
YAML
11 lines
222 B
YAML
image: python:2.7
|
|
|
|
stages:
|
|
- test
|
|
|
|
.job_template: &pio_run
|
|
script:
|
|
- "platformio ci --lib='.' --board=uno --board=teensy31 --board=nodemcuv2 $PLATFORMIO_CI_EXTRA_ARGS"
|
|
|
|
before_script:
|
|
- "pip install -U platformio" |