From 544771ac3f459ae99e074433a2ee55a57b0dcf5f Mon Sep 17 00:00:00 2001 From: John Miller Date: Fri, 11 Nov 2016 08:38:39 -0600 Subject: [PATCH] Mimic melpa .travis.yml One day, this WILL WORK. --- .travis.yml | 15 ++++++++++++++- Cask | 4 +++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ff6e84..eeede2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,9 @@ language: python +addons: + apt: + packages: + - git + matrix: fast_finish: true allow_failures: @@ -8,8 +13,16 @@ python: - "3.4" - "3.5" before_install: - - curl -fsSkl https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh + - sudo apt-get -yq update + - sudo apt-get -yq install git + - git clone https://github.com/rejeep/evm.git $HOME/.evm + - export PATH=$HOME/.evm/bin:$PATH + + - evm config path /tmp - evm install $EMACS --use --skip + - curl -fsSkL https://raw.github.com/cask/cask/master/go | python + - export PATH=$HOME/.cask/bin:$PATH + - cask install: - pip install jupyter==$JUPYTER diff --git a/Cask b/Cask index ff2f26d..b59682a 100644 --- a/Cask +++ b/Cask @@ -1,10 +1,12 @@ (source gnu) (source melpa) +(package "ein" "0.12.0" "Emacs IPython Notebook.") (package-file "lisp/ein.el") (files ("lisp/*.el" :exclude ("lisp/zeroein.el"))) (development (depends-on "websocket") (depends-on "request") - (depends-on "cl-generic")) + (depends-on "cl-generic") + (depends-on "ecukes"))