-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
language: emacs-lisp | ||
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 | ||
- sudo apt-get install -qq patch | ||
- sudo add-apt-repository -y ppa:ondrej/php5 | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq php5 | ||
- wget https://github.com/QafooLabs/php-refactoring-browser/releases/download/v0.0.4/refactor.phar | ||
- chmod +x refactor.phar | ||
- curl -fsSkL https://raw.github.com/cask/cask/master/go | python | ||
- export PATH="/home/travis/build/keelerm84/php-refactor-mode.el/:/home/travis/.cask/bin:$PATH" | ||
- cask | ||
env: | ||
- EMACS=emacs24 TAGS="" | ||
script: | ||
./run-travis-ci.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh -e | ||
cask exec ecukes "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh -e | ||
|
||
cd "$(dirname "$0")" | ||
|
||
ECUKES_EMACS=${EMACS:-$(which emacs)} | ||
export ECUKES_EMACS | ||
|
||
echo "*** Emacs version ***" | ||
echo "ECUKES_EMACS = $ECUKES_EMACS" | ||
"$ECUKES_EMACS" --version | ||
echo | ||
|
||
exec ./run-tests.sh $TAGS |