16 lines
284 B
YAML
16 lines
284 B
YAML
image: python:3.6
|
|
|
|
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- "pip install -U platformio"
|
|
- "cp ampel-firmware/config.public.h ampel-firmware/config.h"
|
|
|
|
build:
|
|
stage: build
|
|
script: "platformio run"
|
|
artifacts:
|
|
paths:
|
|
- .pio/build/esp8266/firmware.bin
|
|
expire_in: 1 week
|