blob: daaf63b8dfb93c20f251b01a6456a9c5b01a27d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# The procedure for testing GNU Emacs was kindly taken from:
# https://github.com/purcell/emacs.d
language: ruby
before_install:
- git clone https://github.com/rejeep/evm.git $HOME/.evm
- export PATH=$HOME/.evm/bin:$PATH
# mu4e
- sudo apt-get -qq update
- sudo apt-get install -y maildir-utils
- wget https://github.com/djcb/mu/releases/download/0.9.18/mu-0.9.18.tar.gz
- tar xzvf mu-0.9.18.tar.gz
- sudo cp -r mu-0.9.18/mu4e /usr/share/emacs/site-lisp/
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
env:
- EVM_EMACS=emacs-24.4-travis
- EVM_EMACS=emacs-24.5-travis
- EVM_EMACS=emacs-25.1-travis
- EVM_EMACS=emacs-git-snapshot-travis
matrix:
allow_failures:
- env: EVM_EMACS=emacs-git-snapshot-travis
script:
# Testing GNU Emacs
- git clone https://github.com/mssola/soria.git
- cp soria/soria-theme.el emacs/soria-theme.el
- lsb_release -a && cd emacs && ./test-startup.sh
# Testing scripts
- cd ../bin/test && ./test.sh
|