Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TravisCI support #121

Merged
merged 2 commits into from
Sep 16, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: erlang
otp_release:
- 17.1
env:
- EMACS=emacs24 EMACS_REPO=cassou/emacs
- EMACS=emacs-snapshot EMACS_REPO=ubuntu-elisp/ppa
before_install:
- sudo add-apt-repository -y ppa:$EMACS_REPO
- sudo apt-get update
- sudo apt-get install $EMACS
- cd /tmp
- wget https://github.com/elixir-lang/elixir/releases/download/v1.0.0/Precompiled.zip
- unzip Precompiled.zip
- export PATH="$PWD/bin:$PATH"
- cd -
- curl -fsSkL https://raw.github.com/cask/cask/master/go | python
- export PATH="/home/travis/.cask/bin:$PATH"
install:
- cask install
script:
- cask exec ert-runner
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Elixir Mode
# Elixir Mode [![Build Status](https://travis-ci.org/elixir-lang/emacs-elixir.svg?branch=travis-ci)](https://travis-ci.org/elixir-lang/emacs-elixir)

Provides font-locking, indentation and navigation support for the
[Elixir programming language.](http://elixir-lang.org/)
Expand Down