Initial Cask support, tweaking .travis.yml

We will get travis-ci to work yet.
This commit is contained in:
John Miller 2016-10-18 13:01:54 -05:00
parent 85744a78bd
commit 1d86493fb1
2 changed files with 13 additions and 1 deletions

View file

@ -14,9 +14,11 @@ before_install:
# Download the makefile to emacs-travis.mk
- wget 'https://raw.githubusercontent.com/flycheck/emacs-travis/master/emacs-travis.mk'
# Install Emacs (according to $EMACS_VERSION)
- sudo make -f emacs-travis.mk install_emacs EMACSCONFFLAGS='--with-xml2 CFLAGS=-O2 CXXFLAGS=-O2'
- sudo make -f emacs-travis.mk install_emacs EMACSCONFFLAGS='CFLAGS=-O2 CXXFLAGS=-O2'
- sudo make -f emacs-travis.mk install_cask
install:
- pip install jupyter==$JUPYTER
- cask install
env:
- EMACS_VERSION=24.3 IPYCMD=jupyter JUPYTER=1.0.0
- EMACS_VERSION=25.1-rc2 IPYCMD=jupyter JUPYTER=1.0.0

10
Cask Normal file
View file

@ -0,0 +1,10 @@
(source gnu)
(source melpa)
(package-file "lisp/ein.el")
(files ("lisp/*.el" :exclude ("lisp/zeroein.el")))
(development
(depends-on "websocket")
(depends-on "request")
(depends-on "cl-generic"))