From 42cc5c2f0a0524462b381e724ef5f9cefccdad4f Mon Sep 17 00:00:00 2001
From: Zoe Pfister <zoe.pfister@uibk.ac.at>
Date: Mon, 20 Feb 2023 11:14:08 +0100
Subject: [PATCH] add .gitlab-ci.yml

---
 .gitlab-ci.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..35c4e19
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,29 @@
+image: platformio/platformio:latest
+
+stages:
+  - build
+
+build-client-central-mast:
+  stage: build
+  script:
+    - cd client/client_central_mast && platformio run
+
+build-client-mock:
+    stage: build
+    script:
+        - cd client/client_mock && platformio run
+
+build-client-satellite:
+    stage: build
+    script:
+        - cd client/client_satellite && platformio run
+
+build-client-esp-cam:
+    stage: build
+    script:
+        - cd client/ESPcam && platformio run
+
+build-host-central-mast:
+    stage: build
+    script:
+        - cd host/host_central_mast && platformio run
\ No newline at end of file
-- 
GitLab