build: Add a gitlab CI configuration file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..03afa11
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,22 @@
+image: debian:stretch
+
+before_script:
+ - apt update -qq
+ - apt install build-essential autoconf automake libtool
+
+stages:
+ - autogen
+ - build
+ - test
+
+autogen:
+ stage: autogen
+ script: autoreconf -f -i && ./configure
+
+build:
+ stage: build
+ script: make
+
+test:
+ stage: test
+ script: make check