File tree Expand file tree Collapse file tree 3 files changed +42
-5
lines changed Expand file tree Collapse file tree 3 files changed +42
-5
lines changed Original file line number Diff line number Diff line change 1+ # Compiled and temporary files
12* .elc
3+ * ~
4+
5+ # Cask
26/.cask
3- / test / sandbox
4- / features / sandbox
5- / dist
6- /build
7- /tmp
7+ dist
8+
9+ # Ecukes
10+ /features / project / .cask
11+ /features / project / test / * .el
Original file line number Diff line number Diff line change 1+ language : generic
2+ sudo : false
3+ before_install :
4+ - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
5+ - evm install $EVM_EMACS --use --skip
6+ - cask
7+ env :
8+ - EVM_EMACS=emacs-24.1-travis
9+ - EVM_EMACS=emacs-24.2-travis
10+ - EVM_EMACS=emacs-24.3-travis
11+ - EVM_EMACS=emacs-24.4-travis
12+ - EVM_EMACS=emacs-24.5-travis
13+ script :
14+ - emacs --version
15+ - make test
16+
17+ notifications :
18+ email : false
Original file line number Diff line number Diff line change 1+ CASK ?= cask
2+ EMACS ?= emacs
3+
4+ all : test
5+
6+ test : unit ecukes
7+
8+ unit :
9+ ${CASK} exec ert-runner
10+
11+ ecukes :
12+ ${CASK} exec ecukes
13+
14+ install :
15+ ${CASK} install
You can’t perform that action at this time.
0 commit comments