diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..35c4e199f7e183a0d1616fbd7f1cebfc912ee20c
--- /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