.gitlab-ci.yml 319 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"
13
14
15
16
  artifacts:
    paths:
      - .pio/build/esp32/firmware.bin
      - .pio/build/esp8266/firmware.bin
Eric Duminil's avatar
Eric Duminil committed
17
    expire_in: never