2015-09-18 13:21:22 +00:00
|
|
|
build: false
|
2017-12-18 20:54:55 +00:00
|
|
|
clone_depth: 5
|
2017-12-18 21:23:46 +00:00
|
|
|
|
|
|
|
environment:
|
2018-08-31 13:27:28 +00:00
|
|
|
# This sets the PHP version (from Chocolatey)
|
2019-01-28 21:18:26 +00:00
|
|
|
PHPCI_CHOCO_VERSION: 7.3.1
|
2018-08-31 13:27:28 +00:00
|
|
|
PHPCI_CACHE: C:\tools\phpci
|
|
|
|
PHPCI_PHP: C:\tools\phpci\php
|
|
|
|
PHPCI_COMPOSER: C:\tools\phpci\composer
|
2015-09-18 13:21:22 +00:00
|
|
|
|
|
|
|
cache:
|
2018-08-31 13:27:28 +00:00
|
|
|
- '%PHPCI_CACHE% -> appveyor.yml'
|
2015-09-18 13:21:22 +00:00
|
|
|
|
|
|
|
init:
|
2018-08-31 13:27:28 +00:00
|
|
|
- SET PATH=%PHPCI_PHP%;%PHPCI_COMPOSER%;%PATH%
|
|
|
|
- SET COMPOSER_HOME=%PHPCI_COMPOSER%\home
|
|
|
|
- SET COMPOSER_CACHE_DIR=%PHPCI_COMPOSER%\cache
|
2016-08-29 13:15:58 +00:00
|
|
|
- SET COMPOSER_NO_INTERACTION=1
|
2017-12-18 21:23:46 +00:00
|
|
|
- SET PHP=0
|
2016-08-29 13:15:58 +00:00
|
|
|
- SET ANSICON=121x90 (121x90)
|
2015-09-18 13:21:22 +00:00
|
|
|
|
|
|
|
install:
|
2018-08-31 13:27:28 +00:00
|
|
|
- IF EXIST %PHPCI_CACHE% (SET PHP=1)
|
|
|
|
- IF %PHP%==0 cinst php -i -y --version %PHPCI_CHOCO_VERSION% --params "/InstallDir:%PHPCI_PHP%"
|
|
|
|
- IF %PHP%==0 cinst composer -i -y --ia "/DEV=%PHPCI_COMPOSER%"
|
2017-12-18 21:23:46 +00:00
|
|
|
- php -v
|
|
|
|
- IF %PHP%==0 (composer --version) ELSE (composer self-update)
|
|
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
2016-08-29 13:15:58 +00:00
|
|
|
- composer install --prefer-dist --no-progress
|
2015-09-18 13:21:22 +00:00
|
|
|
|
|
|
|
test_script:
|
2017-12-18 21:23:46 +00:00
|
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
|
|
- vendor\bin\phpunit --colors=always
|