software/.gitlab-ci.yml

13 lines
196 B
YAML
Raw Normal View History

2021-05-09 20:52:01 +02:00
image: python:3.6
stages:
- build
before_script:
- "pip install -U platformio"
- "cp ampel-firmware/config.public.h ampel-firmware/config.h"
2021-05-09 20:52:01 +02:00
2021-11-15 13:45:36 +01:00
job:
2021-05-09 20:52:01 +02:00
stage: build
2021-11-15 13:45:36 +01:00
script: "platformio run"