Mercurial > hg > isophonics-drupal-site
annotate vendor/mikey179/vfsStream/appveyor.yml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
rev | line source |
---|---|
Chris@0 | 1 build: false |
Chris@0 | 2 shallow_clone: true |
Chris@0 | 3 |
Chris@0 | 4 cache: |
Chris@0 | 5 - .\php -> appveyor.yml |
Chris@0 | 6 - vendor -> composer.lock |
Chris@0 | 7 |
Chris@0 | 8 init: |
Chris@0 | 9 - set PATH=%PATH%;.\php |
Chris@0 | 10 - set COMPOSER_NO_INTERACTION=1 |
Chris@0 | 11 - set CACHED=0 |
Chris@0 | 12 |
Chris@0 | 13 install: |
Chris@0 | 14 - if exist .\php (set CACHED=1) else (mkdir .\php) |
Chris@0 | 15 - if %CACHED%==0 cd .\php |
Chris@18 | 16 - if %CACHED%==0 curl --fail --location --silent --show-error -o php.zip https://windows.php.net/downloads/releases/archives/php-7.0.7-nts-Win32-VC14-x64.zip |
Chris@0 | 17 - if %CACHED%==0 appveyor DownloadFile https://getcomposer.org/composer.phar |
Chris@0 | 18 - if %CACHED%==0 7z x php.zip -y |
Chris@0 | 19 - if %CACHED%==0 cd .. |
Chris@0 | 20 |
Chris@0 | 21 test_script: |
Chris@0 | 22 - php -d extension_dir=.\php\ext -d extension=php_openssl.dll .\php\composer.phar install |
Chris@0 | 23 - vendor/bin/phpunit.bat --coverage-text |