doom-modeline/.travis.yml

37 lines
920 B
YAML
Raw Normal View History

2018-07-05 15:56:52 +08:00
language: emacs-lisp
2018-07-05 15:23:44 +08:00
sudo: false
env:
2019-10-30 23:53:31 +08:00
- EVM_EMACS=emacs-25.1-travis
- EVM_EMACS=emacs-25.2-travis
- EVM_EMACS=emacs-25.3-travis
- EVM_EMACS=emacs-26.1-travis-linux-xenial
- EVM_EMACS=emacs-26.2-travis-linux-xenial
- EVM_EMACS=emacs-26.3-travis-linux-xenial
- EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
2018-07-05 15:23:44 +08:00
matrix:
fast_finish: true
allow_failures:
2019-11-19 00:10:41 +08:00
- env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
2018-07-05 15:23:44 +08:00
2018-07-05 15:56:52 +08:00
before_install:
- |
2019-11-23 17:45:50 +08:00
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(.md)|(.png)|(.pdf)|(.html)|^(LICENSE)|^(docs)'; then
echo "Only doc files were updated, not running the CI."
exit
fi
2018-07-05 15:23:44 +08:00
2018-08-28 23:30:33 +08:00
install:
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
- evm install $EVM_EMACS --use --skip
2018-08-28 23:30:33 +08:00
- cask install
2018-12-08 02:59:08 +08:00
2018-07-05 15:23:44 +08:00
script:
- cask exec ert-runner
2018-12-21 02:29:54 +08:00
- cask build
2018-12-25 04:53:44 +08:00
- cask package
2019-11-12 14:16:40 +08:00
after_success:
- echo "Success!"