1
0
Fork 0
composer/appveyor.yml

31 lines
787 B
YAML
Raw Normal View History

2015-09-18 13:21:22 +00:00
build: false
clone_depth: 5
2015-10-28 08:32:47 +00:00
platform:
- x86
- x64
2015-09-18 13:21:22 +00:00
clone_folder: c:\projects\composer
cache:
- c:\tools\php -> appveyor.yml
2015-09-18 13:21:22 +00:00
init:
- SET PATH=c:\tools\php;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=1
- SET ANSICON=121x90 (121x90)
2015-09-18 13:21:22 +00:00
install:
- IF EXIST c:\tools\php (SET PHP=0)
- IF %PHP%==1 cinst -y php --params "/InstallDir:c:\tools\php"
- cd c:\tools\php
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
- appveyor DownloadFile https://getcomposer.org/composer.phar
- cd c:\projects\composer
- composer install --prefer-dist --no-progress
2015-09-18 13:21:22 +00:00
test_script:
- cd c:\projects\composer
- vendor/bin/phpunit --colors=always