From d9352410ff688d91753ebeef0041b117a666f98c Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Mon, 1 Jun 2015 21:50:15 -0300 Subject: [PATCH] See #375. Install htmlbeautifier, php-cs-fixer, emacs for Windows CI --- appveyor.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index c04061a..a786754 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -77,10 +77,26 @@ install: # Ruby & Gem - cinst ruby -y + # Rubocop - gem install rubocop - + - where rubocop + # HTMLBeautifier + - gem install htmlbeautifier + - where htmlbeautifier + # PHP - cinst php -y + - where php + # Composer + - php -r "readfile('https://getcomposer.org/installer');" | php + - echo @php "%~dp0composer.phar" %*>composer.bat + # PHP-CS-Fixer + - ./composer.phar global require fabpot/php-cs-fixer + - where php-cs-fixer + + # emacs + - cinst emacs -y + - where emacs build_script: - cd %APPVEYOR_BUILD_FOLDER%