File tree Expand file tree Collapse file tree 5 files changed +84
-44
lines changed
Filter options
src/Symfony/Component/Form Expand file tree Collapse file tree 5 files changed +84
-44
lines changed
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ install:
42
42
- echo extension=php_curl.dll >> php.ini-max
43
43
- copy /Y php.ini-max php.ini
44
44
- cd c:\projects\symfony
45
- - IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.7.1 /composer.phar)
45
+ - IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.9.0 /composer.phar)
46
46
- php composer.phar self-update
47
47
- copy /Y .composer\* %APPDATA%\Composer\
48
48
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ before_install:
76
76
export PHPUNIT=$(readlink -f ./phpunit)
77
77
export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data"
78
78
export COMPOSER_UP='composer update --no-progress --no-suggest --ansi'
79
- export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n')
79
+ export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n' | sort )
80
80
find ~/.phpenv -name xdebug.ini -delete
81
81
82
82
if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then
@@ -229,15 +229,15 @@ install:
229
229
SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) &&
230
230
git fetch origin $SYMFONY_VERSION &&
231
231
git checkout -m FETCH_HEAD &&
232
- COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n')
232
+ COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n' | sort )
233
233
else
234
234
SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*')
235
235
fi
236
236
237
237
- |
238
238
# Skip the phpunit-bridge on not-master branches when $deps is empty
239
239
if [[ ! $deps && $TRAVIS_BRANCH != master ]]; then
240
- COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n')
240
+ COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort )
241
241
fi
242
242
243
243
- |
You can’t perform that action at this time.
0 commit comments