Changeset - e50f55859124
[Not reviewed]
0 1 0
Sergey Pashinin - 12 years ago 2013-06-21 14:03:14
sergey@pashinin.com
1st try
1 file changed with 21 insertions and 0 deletions:
0 comments (0 inline, 0 general)
.travis.yml
Show inline comments
 
language: emacs-lisp
 

	
 
env:
 
  matrix:
 
    - EMACS=emacs24
 
    - EMACS=emacs-snapshot
 

	
 
install:
 
  - if [ "$EMACS" = "emacs24" ]; then
 
        sudo add-apt-repository -y ppa:cassou/emacs &&
 
        sudo apt-get update -qq &&
 
        sudo apt-get install -qq emacs24 emacs24-el;
 
    fi
 
  - if [ "$EMACS" = "emacs-snapshot" ]; then
 
        sudo add-apt-repository -y ppa:cassou/emacs &&
 
        sudo apt-get update -qq &&
 
        sudo apt-get install -qq emacs-snapshot &&
 
        sudo apt-get install -qq emacs-snapshot-el emacs-snapshot-gtk;
 
    fi
 

	
 
script:
 
  $EMACS --version && make test EMACS=${EMACS}
 
\ No newline at end of file
0 comments (0 inline, 0 general)