mirror of
https://gitlab.com/wirelos/sprocket-lib.git
synced 2025-12-15 21:18:21 +01:00
20 lines
448 B
YAML
20 lines
448 B
YAML
cache:
|
|
paths:
|
|
- firmware
|
|
|
|
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- "pip install -U platformio"
|
|
|
|
firmware-build:
|
|
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/mesh/
|
|
artifacts:
|
|
paths:
|
|
- .pioenvs/*/firmware.*
|
|
- .pioenvs/*/spiffs.bin |