Files @ 9524c6280b66
Branch filter:

Location: workgroups2/.travis.yml

Sergey Pashinin
Possible errors with next/prev buffers
language: emacs-lisp

env:
  global:
    - CURL=curl -fsSkL --retry 9 --retry-delay 9
  matrix:
    - EMACS=emacs24
    - 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:
  - 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}