Files
sprocket-device-illucat/.gitlab-ci.yml
2018-09-19 16:45:41 +02:00

22 lines
379 B
YAML

image: python:2.7-stretch
stages:
- test
- build
before_script:
- "pip install -U platformio"
firmware-build:
stage: build
image: python:2.7-stretch
script:
- mv data/example.config.json data/config.json
- pio run -t clean
- pio run
- pio run -t buildfs
artifacts:
paths:
- .pioenvs/build/firmware.bin
- .pioenvs/build/spiffs.bin