14 lines
215 B
YAML
14 lines
215 B
YAML
|
image: python:3.6
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
before_script:
|
||
|
- "cd firmware"
|
||
|
- "pip install -U platformio"
|
||
|
# - "cp ampel-firmware/config.public.h ampel-firmware/config.h"
|
||
|
|
||
|
job:
|
||
|
stage: build
|
||
|
script: "platformio run"
|