.gitlab-ci.yml 196 Bytes
Newer Older
Käppler's avatar
Käppler committed
1
2
3
4
5
6
7
8
9
10
11
12
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"