From 8bf560d4161e8d02bc6c22c913b7ee4c8716200f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A4ppler?= Date: Thu, 1 Apr 2021 09:05:14 +0000 Subject: [PATCH] GitLab: Add basic CI (build stage) --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7fc9cae --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,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" -- GitLab