mirror of
https://github.com/vale981/LAAG1
synced 2025-03-04 08:41:41 -05:00
21 lines
640 B
YAML
21 lines
640 B
YAML
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
|
||
|
||
env:
|
||
- EMACS_VERSION=snapshot
|
||
before_install:
|
||
- 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
|
||
# Configure $PATH: Executables are installed to $HOME/bin
|
||
- export PATH="$HOME/bin:$PATH"
|
||
|
||
script:
|
||
# Run your tests
|
||
- sh ./build.sh
|