.travis.yml: Limit output when installing Emacs

This commit is contained in:
Nathaniel Nicandro 2019-05-09 12:50:00 -05:00
parent 3628cab446
commit eb3708fa0c

View file

@ -17,7 +17,9 @@ before_install:
# Use this fork of EVM for dynamic module support
- git clone https://github.com/ubolonton/evm ${TRAVIS_BUILD_DIR}/.evm
- evm config path /tmp
- evm install emacs-${EMACS_VERSION} --use --skip
# Limit the output when git-snapshot, we can't just suppress it completely
# since Travis will cancel a job if it doesn't receive output after 10 mins.
- evm install emacs-${EMACS_VERSION} --use --skip | awk 'NR % 1000 == 0'
# Install cask
- curl -fsSL https://raw.githubusercontent.com/cask/cask/master/go | python
install: