Skip to content

Upgrade to component based TravisCI builds #911

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

Closed
wants to merge 1 commit into from
Closed
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
37 changes: 17 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
language: emacs-lisp
language: generic
sudo: required
dist: trusty

cache:
- apt

addons:
apt:
sources:
- cassou-emacs
- ubuntu-elisp
packages:
- emacs23-nox
- emacs24-nox
- emacs-snapshot
- texinfo

env:
matrix:
- EMACS=emacs23 TARGET=check
Expand All @@ -17,27 +31,10 @@ matrix:
- EMACS=emacs-snapshot TARGET=check

install:
- if [ "$EMACS" = "emacs23" ]; then
sudo apt-get update -qq &&
sudo apt-get install -qq emacs23-gtk emacs23-el;
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;
fi
- 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 emacs-snapshot-el;
fi
- if [ "$TARGET" = "deploy-manual" ]; then
sudo apt-get update -qq &&
sudo apt-get install -qq texinfo;
fi

script:
make $TARGET
- makeinfo --version
- make $TARGET

notifications:
email: false
Expand Down