-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
51 lines (43 loc) · 1.43 KB
/
.travis.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
language: emacs-lisp
sudo: false
cache:
directories:
- $HOME/emacs-24.3
- $HOME/emacs-24.4
- $HOME/emacs-24.5
before_install:
# Emacs 24.3
- wget http://ftpmirror.gnu.org/emacs/emacs-24.3.tar.xz
- tar -xf emacs-24.3.tar.xz
- cd emacs-24.3
- if [ ! -e bin/emacs ]; then ./configure --prefix=$HOME/emacs-24.3 --with-xpm=no --with-gif=no ; make ; make install ; fi
- cd ..
# Emacs 24.4
- wget http://ftpmirror.gnu.org/emacs/emacs-24.4.tar.xz
- tar -xf emacs-24.4.tar.xz
- cd emacs-24.4
- if [ ! -e bin/emacs ]; then ./configure --prefix=$HOME/emacs-24.4 --with-xpm=no --with-gif=no ; make ; make install ; fi
- cd ..
# Emacs 24.5
- wget http://ftpmirror.gnu.org/emacs/emacs-24.5.tar.xz
- tar -xf emacs-24.5.tar.xz
- cd emacs-24.5
- if [ ! -e bin/emacs ]; then ./configure --prefix=$HOME/emacs-24.5 --with-xpm=no --with-gif=no ; make ; make install ; fi
- cd ..
before_script: true
script:
# emacs 24.3
- make getdeps EMACS=$HOME/emacs-24.3/bin/emacs
- make build EMACS=$HOME/emacs-24.3/bin/emacs
- make test EMACS=$HOME/emacs-24.3/bin/emacs
- make clean
# emacs 24.4
- make getdeps EMACS=$HOME/emacs-24.4/bin/emacs
- make build EMACS=$HOME/emacs-24.4/bin/emacs
- make test EMACS=$HOME/emacs-24.4/bin/emacs
- make clean
# emacs 24.5
- make getdeps EMACS=$HOME/emacs-24.5/bin/emacs
- make build EMACS=$HOME/emacs-24.5/bin/emacs
- make test EMACS=$HOME/emacs-24.5/bin/emacs
- make clean