summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Zlatanov <tzz@lifelogs.com>2017-04-26 14:40:03 -0400
committerTed Zlatanov <tzz@lifelogs.com>2017-04-26 14:40:22 -0400
commit4f523eb52fd327ffba21a579700a6f52f47d9e6c (patch)
tree62161ff48c7a4a2340642959b31dd62467ba5eb3
parentafa02fc58c523b31ccfcc657794d4865a40b02a8 (diff)
downloademacs-scratch/tzz/gitlab.tar.gz
* .gitlab-ci.yml: Add setup for GitLab CI builds.scratch/tzz/gitlab
-rw-r--r--.gitlab-ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000000..3864625fef6
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+# Maintainer: tzz@lifelogs.com
+# See https://gitlab.com/emacs-ci/emacs
+image: debian:unstable
+
+before_script:
+ - apt update -qq
+ - apt install -y -qq build-essential autoconf automake libncurses-dev gnutls-dev
+
+stages:
+ - test
+
+test:
+ stage: test
+ script:
+ - ./autogen.sh
+ - ./configure --without-makeinfo
+ - make check