2017-10-24 15:30:03 +02:00
|
|
|
|
language: emacs-lisp
|
|
|
|
|
sudo: false
|
|
|
|
|
cache:
|
|
|
|
|
- directories:
|
|
|
|
|
# Cache stable Emacs binaries (saves 1min per job)
|
|
|
|
|
- "$HOME/emacs/"
|
|
|
|
|
# Allow Emacs snapshot builds to fail and don’t wait for these as they can take
|
|
|
|
|
# a looooong time
|
|
|
|
|
matrix:
|
|
|
|
|
fast_finish: true
|
2017-10-24 15:36:12 +02:00
|
|
|
|
|
2017-10-24 15:30:03 +02:00
|
|
|
|
env:
|
|
|
|
|
- EMACS_VERSION=snapshot
|
|
|
|
|
before_install:
|
2017-10-24 15:43:40 +02:00
|
|
|
|
- sudo apt-get -qq update && sudo apt-get install -y --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended emacs
|
2017-10-24 15:30:03 +02:00
|
|
|
|
# Configure $PATH: Executables are installed to $HOME/bin
|
|
|
|
|
- export PATH="$HOME/bin:$PATH"
|
2017-10-24 15:43:40 +02:00
|
|
|
|
|
2017-10-24 15:30:03 +02:00
|
|
|
|
script:
|
|
|
|
|
# Run your tests
|
|
|
|
|
- sh ./build.sh
|