From 9c8e7f9a172463009d0d88ec8bc08b25ed9adf30 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 9 May 2021 20:52:01 +0200 Subject: [PATCH] Add gitlab ci --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1eb1a8e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +image: python:3.6 + +stages: + - build + +before_script: + - "cd firmware" + - "pip install -U platformio" +# - "cp ampel-firmware/config.public.h ampel-firmware/config.h" + +job: + stage: build + script: "platformio run"