aboutsummaryrefslogtreecommitdiff
path: root/Makefile.travis
diff options
context:
space:
mode:
authorErik Martin-Dorel2020-04-16 17:06:27 +0200
committerErik Martin-Dorel2020-04-16 17:06:27 +0200
commite8681a08bbbe19e440ee7c013814229e51195b3e (patch)
tree2b19d80a4de9d301888db1e29ff49ac197339688 /Makefile.travis
parent1ef1286c43d4d099b3b017069ed09c261eb8b6ca (diff)
feat: Remove Travis CI configuration
Diffstat (limited to 'Makefile.travis')
-rw-r--r--Makefile.travis30
1 files changed, 0 insertions, 30 deletions
diff --git a/Makefile.travis b/Makefile.travis
deleted file mode 100644
index 1aa04dc0..00000000
--- a/Makefile.travis
+++ /dev/null
@@ -1,30 +0,0 @@
-VERSIONS = 24.3 24.4 24.5 25.1 25.2 25.3
-STABLE_TARGETS = $(addprefix prepare-emacs-,$(VERSIONS))
-
-.PHONY: prepare-emacs-24 prepare-emacs-git $(STABLE_TARGETS) \
- prepare-emacs before_install install script
-
-$(STABLE_TARGETS):
- curl -o /tmp/$(EMACS_TARGET).tar.gz "https://ftp.gnu.org/gnu/emacs/$(EMACS_TARGET).tar.gz"
- mkdir /tmp/emacs-tmp
- tar xzf /tmp/$(EMACS_TARGET).tar.gz -C /tmp/emacs-tmp
- mv /tmp/emacs-tmp/* "/tmp/emacs" || (ls /tmp/*; exit 1)
-
-prepare-emacs-git:
- git clone --depth=1 'git://git.savannah.gnu.org/emacs.git' --branch emacs-25 /tmp/emacs
- cd /tmp/emacs && ./autogen.sh
-
-prepare-emacs: prepare-$(EMACS_TARGET)
- echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
- cd /tmp/emacs && ./configure --prefix="$(HOME)" --without-all --with-x-toolkit=no --without-x --with-xml2 && make -j2 install
-
-before_install: prepare-emacs
-
-install:
-
-script:
- make
-
-# Local Variables:
-# indent-tabs-mode: t
-# End: