.gitlab-ci.yml 174 Bytes
Newer Older
Käppler's avatar
Käppler committed
1
2
3
4
5
6
7
image: python:3.6

stages:
 - build

before_script:
  - "pip install -U platformio"
Eric Duminil's avatar
Eric Duminil committed
8
  - "cp src/config.public.h src/config.h"
Käppler's avatar
Käppler committed
9
10
11
12

job:
  stage: build
  script: "platformio run"