From 8e41ac2471270f38a4798a657a70c5d28d721e54 Mon Sep 17 00:00:00 2001
From: Daniel Friesel <daniel.friesel@uos.de>
Date: Tue, 13 Aug 2019 11:00:26 +0200
Subject: [PATCH] add minimal CI script for GitLab

---
 .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..56ed31b
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+image: debian:buster
+
+stages:
+  - test
+
+test:
+  stage: test
+  script:
+  - apt-get update -qy
+  - apt-get install -y build-essential
+  - ./mp arch=posix app=ledblink loop=1 timer_s=1
+  - ./mp arch=posix app=sysinfo
+  - ./mpm arch=posix app=donothing
-- 
GitLab