File tree 3 files changed +7
-1
lines changed 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ install:
46
46
- php composer.phar self-update
47
47
- copy /Y .github\composer-config.json %APPDATA%\Composer\config.json
48
48
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
49
+ - git config --global user.email ""
50
+ - git config --global user.name "Symfony"
51
+ - php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit
49
52
- php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit src\Symfony\Contracts
50
53
- IF %APPVEYOR_REPO_BRANCH%==master (SET COMPOSER_ROOT_VERSION=dev-master) ELSE (SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev)
51
54
- php composer.phar update --no-progress --no-suggest --ansi
Original file line number Diff line number Diff line change 47
47
if (isset ($ preferredInstall [$ package ->name ]) && 'source ' === $ preferredInstall [$ package ->name ]) {
48
48
passthru ("cd $ dir && tar -cf package.tar --exclude='package.tar' * " );
49
49
} else {
50
- passthru ("cd $ dir && git init && git add . && git commit --author \" Symfony <> \" -m - && git archive -o package.tar HEAD && rm .git/ -Rf " );
50
+ passthru ("cd $ dir && git init && git add . && git commit -q -m - && git archive -o package.tar HEAD && rm .git/ -Rf " );
51
51
}
52
52
53
53
if (!isset ($ package ->extra ->{'branch-alias ' }->{'dev-master ' })) {
Original file line number Diff line number Diff line change @@ -202,6 +202,9 @@ install:
202
202
203
203
- |
204
204
# Create local composer packages for each patched components and reference them in composer.json files when cross-testing components
205
+ git config --global user.email ""
206
+ git config --global user.name "Symfony"
207
+
205
208
if [[ ! $deps ]]; then
206
209
php .github/build-packages.php HEAD^ src/Symfony/Bridge/PhpUnit src/Symfony/Contracts
207
210
else
You can’t perform that action at this time.
0 commit comments