Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9e32a4d

Browse filesBrowse files
Merge branch '3.0'
* 3.0: [ci] Tweak scripts Conflicts: appveyor.yml
2 parents 434a2f5 + 96eacb4 commit 9e32a4d
Copy full SHA for 9e32a4d

File tree

Expand file treeCollapse file tree

2 files changed

+8
-5
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+8
-5
lines changed

‎appveyor.yml

Copy file name to clipboardExpand all lines: appveyor.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ install:
3434
- IF %PHP%==1 echo max_execution_time=1200 >> php.ini-min
3535
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini-min
3636
- IF %PHP%==1 echo extension_dir=ext >> php.ini-min
37-
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini-min
38-
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini-min
39-
- IF %PHP%==1 echo curl.cainfo=c:\php\cacert.pem >> php.ini-min
4037
- IF %PHP%==1 copy /Y php.ini-min php.ini-max
38+
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini-max
4139
- IF %PHP%==1 echo extension=php_apcu.dll >> php.ini-max
4240
- IF %PHP%==1 echo apc.enable_cli=1 >> php.ini-max
4341
- IF %PHP%==1 echo extension=php_memcache.dll >> php.ini-max
4442
- IF %PHP%==1 echo extension=php_intl.dll >> php.ini-max
4543
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini-max
4644
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini-max
4745
- IF %PHP%==1 echo extension=php_pdo_sqlite.dll >> php.ini-max
46+
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini-max
47+
- IF %PHP%==1 echo curl.cainfo=c:\php\cacert.pem >> php.ini-max
4848
- appveyor DownloadFile https://getcomposer.org/composer.phar
4949
- copy /Y php.ini-max php.ini
5050
- cd c:\projects\symfony

‎phpunit

Copy file name to clipboardExpand all lines: phpunit
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
// Please update when phpunit needs to be reinstalled with fresh deps:
14-
// Cache-Id-Version: 2016-03-22 17:23 UTC
14+
// Cache-Id-Version: 2016-03-23 14:50 UTC
1515

1616
use Symfony\Component\Process\ProcessUtils;
1717

@@ -53,7 +53,10 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__
5353
chdir("phpunit-$PHPUNIT_VERSION");
5454
passthru("$COMPOSER remove --no-update symfony/yaml");
5555
passthru("$COMPOSER require --dev --no-update symfony/phpunit-bridge \">=3.1@dev\"");
56-
passthru("$COMPOSER install --prefer-dist --no-progress --ansi");
56+
passthru("$COMPOSER install --prefer-dist --no-progress --ansi", $exit);
57+
if ($exit) {
58+
exit($exit);
59+
}
5760
file_put_contents('phpunit', <<<'EOPHP'
5861
<?php
5962

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.