forked from yashi/org-asciidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (30 loc) · 904 Bytes
/
.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
# `emacs-lisp' isn't yet supported. If set, it will fallback to `ruby'
# So, use `C' instead.
language: c
git:
depth: 1
matrix:
include:
- os: linux
sudo: required
dist: trusty
env:
- EMACS=emacs-snapshot
- ORG_BRANCH=master
- PPA=ubuntu-elisp/ppa
env:
global:
- ORG_REPO=https://code.orgmode.org/bzg/org-mode.git
- ORG_DIR=org-mode
matrix:
- EMACS=emacs24 ORG_BRANCH=maint PPA=cassou/emacs
- EMACS=emacs24 ORG_BRANCH=master PPA=cassou/emacs
- EMACS=emacs-snapshot ORG_BRANCH=maint PPA=ubuntu-elisp/ppa
- EMACS=emacs-snapshot ORG_BRANCH=master PPA=ubuntu-elisp/ppa
before_install:
- sudo add-apt-repository -y ppa:$PPA
- sudo apt-get update -qq
- sudo apt-get install -qq $EMACS
- git clone --depth=1 --branch $ORG_BRANCH $ORG_REPO && (cd org-mode && echo "autoloads:" > local.mk && make)
script:
- make test