Drupal investigation

appveyor.yml 701B

123456789101112131415161718192021222324
  1. build: false
  2. shallow_clone: true
  3. cache:
  4. - .\php -> appveyor.yml
  5. - vendor -> composer.lock
  6. init:
  7. - set PATH=%PATH%;.\php
  8. - set COMPOSER_NO_INTERACTION=1
  9. - set CACHED=0
  10. install:
  11. - if exist .\php (set CACHED=1) else (mkdir .\php)
  12. - if %CACHED%==0 cd .\php
  13. - if %CACHED%==0 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-7.0.7-nts-Win32-VC14-x64.zip -FileName php.zip
  14. - if %CACHED%==0 appveyor DownloadFile https://getcomposer.org/composer.phar
  15. - if %CACHED%==0 7z x php.zip -y
  16. - if %CACHED%==0 cd ..
  17. test_script:
  18. - php -d extension_dir=.\php\ext -d extension=php_openssl.dll .\php\composer.phar install
  19. - vendor/bin/phpunit.bat --coverage-text