File: .travis.yml

package info (click to toggle)
emacs-python-environment 0.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 168 kB
  • sloc: lisp: 297; makefile: 173; python: 37
file content (30 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (3)
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
language: emacs-lisp
env:
  matrix:
    - EMACS=emacs24
    - EMACS=emacs-snapshot
  global:
    - CASK=$HOME/.cask/bin/cask
before_install:
  # Install virtualenv
  - sudo apt-get install -qq python-virtualenv
  - sudo add-apt-repository -y ppa:cassou/emacs
  - sudo add-apt-repository -y ppa:ubuntu-elisp/ppa
  - sudo apt-get update -qq
  - sudo apt-get install -qq $EMACS
  - if [ "$EMACS" = 'emacs-snapshot' ]; then
      sudo apt-get install -qq emacs-snapshot-el emacs-snapshot-nox;
    fi
  # Install Cask
  - curl -fsSkL
        --max-time 10
        --retry 10
        --retry-delay 10
        https://raw.github.com/cask/cask/master/go
        | python

  # The following command does (should) not have any effect on test,
  # but to separate installation phase and testing phase:
  - make deps
script:
  - make travis-ci