Changeset - f2d165b8463a
[Not reviewed]
0 1 0
Sergey Pashinin - 11 years ago 2014-08-25 10:24:11
sergey@pashinin.com
Travis: downloading deps, try on Emacs 23
1 file changed with 17 insertions and 2 deletions:
0 comments (0 inline, 0 general)
.travis.yml
Show inline comments
 
@@ -4,19 +4,34 @@ env:
 
  global:
 
    - CURL=curl -fsSkL --retry 9 --retry-delay 9
 
  matrix:
 
    - EMACS=emacs23
 
    - EMACS=emacs24
 
    - EMACS=emacs-snapshot
 

	
 
#matrix:
 
#  allow_failures:
 
#    - env: EMACS=emacs-snapshot
 
before_install:
 
  - sudo add-apt-repository -y ppa:cassou/emacs
 
  - sudo apt-get update -qq
 
  - sudo apt-get install -qq $EMACS
 
install:
 
  - $CURL https://raw.githubusercontent.com/rejeep/f.el/master/f.el -o f.el
 
  - $CURL https://raw.githubusercontent.com/magnars/s.el/master/s.el -o s.el
 
  - $CURL https://raw.githubusercontent.com/magnars/dash.el/master/dash.el -o dash.el
 
  - if test $EMACS = emacs; then
 
      $CURL https://raw.githubusercontent.com/ohler/ert/fb3c278d/lisp/emacs-lisp/ert.el -o ert.el;
 
      $CURL https://raw.githubusercontent.com/emacsmirror/cl-lib/master/cl-lib.el -o cl-lib.el;
 
    fi
 
  - if [ "$EMACS" = "emacs24" ]; then
 
      sudo apt-get install -qq emacs24-el;
 
    fi
 
  - if [ "$EMACS" = "emacs-snapshot" ]; then
 
      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
 
  - $EMACS --version
 
  - make test EMACS=${EMACS}
 

	
 
notifications:
 
  email: false
 
\ No newline at end of file
0 comments (0 inline, 0 general)