atom-beautify/.travis.yml

87 lines
2.2 KiB
YAML
Raw Normal View History

notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/a7cbe520877895f3154a
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: true # default: false
email:
on_success: never
on_failure: change
script: sh build-package.sh
2016-05-14 10:53:15 -06:00
git:
depth: 10
sudo: false
os:
- linux
- osx
2015-02-08 19:10:46 -07:00
env:
global:
- APM_TEST_PACKAGES="language-marko language-html-swig language-svg language-d mavensmate-atom"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
2015-02-08 19:10:46 -07:00
2016-05-14 10:53:15 -06:00
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
2015-04-29 02:17:37 -06:00
cache:
2016-02-20 14:45:57 -07:00
- pip: true
- bundler: true
2015-04-29 02:17:37 -06:00
- directories:
2016-02-20 14:45:57 -07:00
- vendor/bundle # gems are installed here, https://docs.travis-ci.com/user/languages/ruby/#Dependency-Management
2015-04-29 02:17:37 -06:00
- node_modules
2015-04-29 10:13:06 -06:00
- $HOME/.atom
2015-11-02 10:25:39 -07:00
- $HOME/.stack
2015-04-29 02:17:37 -06:00
before_install:
# Update Homebrew
2014-06-15 22:09:11 -06:00
- brew update
- brew tap homebrew/dupes
- brew tap homebrew/versions
# Ruby language support
# - gem install ruby-beautify --verbose
- gem install rubocop
- gem install htmlbeautifier
- gem install puppet-lint
# Python language support
2014-06-15 21:49:14 -06:00
- brew install python
- pip install --upgrade autopep8
2015-11-19 19:25:22 -07:00
- pip install --upgrade isort
# SQL language support
- pip install --upgrade sqlparse
# Java, C, C++, C#, Objective-C, D, Pawn, Vala
- brew install uncrustify
# PHP
- brew tap homebrew/homebrew-php
- brew install php56 || true
- brew gist-logs php56 || true
- echo -e "\n[Phar]\nphar.readonly = Off\n" >> /usr/local/etc/php/5.6/php.ini
- brew install php-cs-fixer || true
- brew gist-logs php-cs-fixer || true
# CoffeeScript
- npm install coffee-formatter
2015-10-29 13:41:57 -06:00
# Haskell
# - brew install haskell-stack
# - stack setup
# - stack install stylish-haskell
2015-12-10 06:42:08 -07:00
# Elm
- curl -L -o /tmp/elm-format.tgz https://github.com/avh4/elm-format/releases/download/0.2.0-alpha/elm-format-0.2.0-alpha-mac-x64.tgz
2015-12-10 17:51:40 -07:00
- tar xvzf /tmp/elm-format.tgz -C /usr/local/bin
2016-04-19 15:15:36 -06:00
# OCaml
- brew install ocaml opam
2016-04-20 00:39:00 -06:00
- opam init --auto-setup
2016-04-20 00:52:23 -06:00
- opam install --yes ocp-indent
2016-04-08 09:36:13 -06:00
# Crystal
- brew install crystal-lang