branch: externals/system-packages
commit 9a8c3a96b5df544d07e078fe4d3c727beaad6566
Author: Alex Branham <[email protected]>
Commit: Alex Branham <[email protected]>
Move CI to gitlab
---
.gitlab-ci.yml | 9 +++++++++
.travis.yml | 14 --------------
Makefile | 2 +-
3 files changed, 10 insertions(+), 15 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..deb21a1
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,9 @@
+before_script:
+ - apt-get update -qq && apt-get install -y -qq emacs
+ - emacs --version
+
+test:
+ script:
+ - make compile
+ - make test
+
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c7b860b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-language: generic
-
-sudo: required
-
-before_install:
- - sudo add-apt-repository ppa:ubuntu-elisp/ppa -y
- - sudo apt-get -qq update
- - sudo apt-get install emacs-snapshot
-
-script:
- - emacs-snapshot --version
- - make compile
- - make test
-
diff --git a/Makefile b/Makefile
index 9365804..d017648 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-EMACS ?= emacs-snapshot
+EMACS ?= emacs
EMACS_FLAGS = --quick --directory .
EMACS_BATCH = $(EMACS) --batch $(EMACS_FLAGS)