forked from antham/helm-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
86 lines (72 loc) · 1.5 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
###
### Notes
###
### The travis web interface may choke silently and fail to
### update when there are issues with the .travis.yml file.
###
### The "travis-lint" command-line tool does not catch all
### errors which may lead to silent failure.
###
### Shell-style comments in this file must have "#" as the
### *first* character of the line.
###
sudo: false
###
### language
###
language: emacs-lisp
###
### limit build attempts to defined branches
###
### notes
###
### This controls which branches are built.
###
### You can also control which branches affect the web badge, by
### appending "?branch=master,staging,production" to the end of the
### image URL (replacing "master,staging,production" with a
### comma-separated list of branches to be reflected in the badge).
###
#
# branches:
# only:
# - master
#
###
### runtime initialization
###
addons:
apt:
sources:
- cassou-emacs
packages:
- emacs24
before_install:
- git submodule --quiet update --init --recursive
- git config --global user.email "[email protected]"
- git config --global user.name "noname"
install:
- curl -fsSkL https://raw.github.com/cask/cask/master/go | python;
- export PATH="${HOME}/.cask/bin:$PATH"
before_script:
- make downloads
###
### the actual build/test command
###
### (use "make test-batch" to test without byte-compiling)
###
script:
make test
###
### settings
###
notifications:
email: false
#
# Emacs
#
# Local Variables:
# indent-tabs-mode: nil
# coding: utf-8
# End:
#