.appveyor.yml 788 B

1234567891011121314151617181920212223242526272829303132333435
  1. version: "Build {build}"
  2. environment:
  3. matrix:
  4. - PHP_VERSION: '7.1'
  5. PHP_ARCHITECTURE: x64
  6. - PHP_VERSION: '5.6'
  7. PHP_ARCHITECTURE: x86
  8. matrix:
  9. fast_finish: true
  10. clone_depth: 50
  11. cache:
  12. - C:\tools\downloads -> .appveyor.yml
  13. - C:\tools\bin -> .appveyor.yml
  14. - '%ProgramFiles%\WindowsPowerShell\Modules\VcRedist -> .appveyor.yml'
  15. - '%LOCALAPPDATA%\Composer\files'
  16. install:
  17. - ps: .\.appveyor\configure.ps1
  18. - php --ri gd
  19. - php --ri imagick
  20. - composer self-update
  21. - composer install --no-progress --no-suggest --optimize-autoloader --no-ansi --no-interaction %PREFER_LOWEST%
  22. build: off
  23. test_script:
  24. - set APPVEYOR_SAVE_CACHE_ON_ERROR=true
  25. - cd /d "%APPVEYOR_BUILD_FOLDER%"
  26. - composer test -- --exclude-group always-skipped,gmagick
  27. deploy: off