See #18. Improve Travis CI installation of dependencies.
This commit is contained in:
parent
19e69ab015
commit
5758b0f167
10
.travis.yml
10
.travis.yml
|
@ -8,8 +8,16 @@ notifications:
|
||||||
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
|
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
# Update Homebrew
|
||||||
- brew update
|
- brew update
|
||||||
|
# Ruby language support
|
||||||
- gem install ruby-beautify --verbose
|
- gem install ruby-beautify --verbose
|
||||||
|
# Python language support
|
||||||
- brew install python
|
- brew install python
|
||||||
- pip install --upgrade autopep8
|
- pip install --upgrade autopep8
|
||||||
- cabal install pandoc
|
# Markdown language support
|
||||||
|
# - cabal install pandoc
|
||||||
|
# Java, C, C++, C#, Objective-C, D, Pawn, Vala
|
||||||
|
- brew install uncrustify
|
||||||
|
# PHP
|
||||||
|
- pear install PHP_Beautifier-beta
|
||||||
|
|
Loading…
Reference in New Issue