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

Simpler apt-get #1025

Merged
merged 1 commit into from
Dec 12, 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
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,20 @@ matrix:
install:
- if [ "$EMACS" = "emacs23" ]; then
sudo apt-get update -qq &&
sudo apt-get install -qq emacs23-gtk emacs23-el;
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs23-nox;
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;
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs24-nox;
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;
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs-snapshot;
fi
- if [ "$TARGET" = "deploy-manual" ]; then
sudo apt-get update -qq &&
sudo apt-get install -qq texinfo;
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes texinfo;
fi

script:
Expand Down