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 96eacb4

Browse filesBrowse files
Merge branch '2.8' into 3.0
* 2.8: [ci] Tweak scripts
2 parents 37a75f4 + a188125 commit 96eacb4
Copy full SHA for 96eacb4

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,10 +34,8 @@ 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
@@ -46,6 +44,8 @@ install:
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
4846
- IF %PHP%==1 echo extension=php_ldap.dll >> php.ini-max
47+
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini-max
48+
- IF %PHP%==1 echo curl.cainfo=c:\php\cacert.pem >> php.ini-max
4949
- appveyor DownloadFile https://getcomposer.org/composer.phar
5050
- copy /Y php.ini-max php.ini
5151
- 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.