From 696d04dd78d199d545a6f366f26d86d0320b92e6 Mon Sep 17 00:00:00 2001
From: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Date: Sun, 20 Dec 2015 20:39:14 +0200
Subject: [PATCH] Added .gitlab-ci.yml to enable CI in gitlab mirror

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..816cf74
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+Build and Check (x86-64):
+  script:
+  - git submodule update --init && autoreconf -fvi && 
+    ./configure --disable-documentation && make -j4 && make check -j4
+  tags:
+  - x86-64
+  except:
+  - tags
+Build and Check (x86):
+  script:
+  - git submodule update --init && autoreconf -fvi && 
+    ./configure --disable-documentation && make -j4 && make check -j4
+  tags:
+  - x86
+  except:
+  - tags
-- 
2.5.0

