Skip to content

Commit

Permalink
Initial travis-ci files.
Browse files Browse the repository at this point in the history
  • Loading branch information
stsquad committed Aug 27, 2013
1 parent c76aadf commit baab4c7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
@@ -0,0 +1,22 @@
language: node_js
node_js:
- "0.11"
env:
- EMACS=emacs24
- EMACS=emacs-snapshot
before_install:
- if [ "$EMACS" = 'emacs-snapshot' ] ; then
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get update -qq &&
sudo apt-get install -qq
emacs-snapshot-el emacs-snapshot-gtk emacs-snapshot ;
fi
- if [ "$EMACS" = 'emacs24' ] ; then
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get update -qq &&
sudo apt-get install -qq
emacs24 emacs24-el emacs24-common-non-dfsg ;
fi
script:
- ./test-travis.sh

11 changes: 11 additions & 0 deletions test-travis.sh
@@ -0,0 +1,11 @@
#!/bin/sh
#
# Very simple test script

set -ex

# About the simplest test we can do, ensure the file loads without error
${EMACS} --version
${EMACS} -q --batch -l servers/edit-server.el


0 comments on commit baab4c7

Please sign in to comment.