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