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

Use texinfo build from ppa #692

Merged
merged 1 commit into from
Jun 4, 2015
Merged
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
19 changes: 7 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ env:
- EMACS=emacs23 TARGET=check
- EMACS=emacs24 TARGET=check
- EMACS=emacs-snapshot TARGET=check
- EMACS=emacs24 TARGET=deploy-manual
- TARGET=deploy-manual
global:
- secure: "ejv1+ub/v+Hm/23fhp4zLAHT3HiCG+YdDHai57LDe4LfEZCeGz4i/6LazbPbwm58v2YuKvMcdNshebc1s4A293ARJryPyFfW/8kEe+3hQ+cDxunNdHfqcS8SyhcDG0mrv7dqiVAtMJqB8qZb0c161KeEM8nyhC0wyQ+EZ5qJnzM="

matrix:
allow_failures:
- env:
- EMACS=emacs-snapshot
- EMACS=emacs-snapshot TARGET=check

install:
- if [ "$EMACS" = "emacs23" ]; then
Expand All @@ -27,21 +27,16 @@ install:
- if [ "$EMACS" = "emacs-snapshot" ]; then
sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
sudo apt-get update -qq &&
sudo apt-get install -qq emacs-snapshot &&
sudo apt-get install -qq emacs-snapshot-el;
sudo apt-get install -qq emacs-snapshot emacs-snapshot-el;
fi
- if [ "$TARGET" = "deploy-manual" ]; then
curl -O http://ftp.gnu.org/gnu/texinfo/texinfo-5.2.tar.xz;
tar -xf texinfo-5.2.tar.xz;
cd texinfo-5.2;
./configure;
make;
sudo make install;
cd ..;
sudo add-apt-repository -y ppa:gracjanpolak/ppa &&
sudo apt-get update -qq &&
sudo apt-get install -qq texinfo;
fi

script:
lsb_release -a && $EMACS --version && make EMACS=$EMACS $TARGET
make $TARGET

notifications:
email: false
Expand Down