mirror of
https://gitlab.com/wirelos/sprocket-lib.git
synced 2025-12-15 05:02:21 +01:00
18 lines
500 B
YAML
18 lines
500 B
YAML
stages:
|
|
- build
|
|
|
|
cache:
|
|
paths:
|
|
- firmware
|
|
|
|
before_script:
|
|
- "pip install -U platformio"
|
|
|
|
build-examples:
|
|
stage: build
|
|
image: python:2.7-stretch
|
|
script:
|
|
# - platformio lib --global install painlessMesh ArduinoJson TaskScheduler PubSubClient ESPAsyncTCP AsyncTCP "ESP Async WebServer"
|
|
- platformio ci --lib="." --board=esp12e src/examples/basic/
|
|
- platformio ci --lib="." --board=esp12e src/examples/mesh/
|
|
- platformio ci --lib="." --board=esp12e src/examples/mqttBridge/ |