File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ before_install:
73
73
export PHPUNIT=$(readlink -f ./phpunit)
74
74
export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data"
75
75
8000
export COMPOSER_UP='composer update --no-progress --no-suggest --ansi'
76
- export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n')
76
+ export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort )
77
77
find ~/.phpenv -name xdebug.ini -delete
78
78
79
79
if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then
@@ -244,15 +244,15 @@ install:
244
244
SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) &&
245
245
git fetch origin $SYMFONY_VERSION &&
246
246
git checkout -m FETCH_HEAD &&
247
- COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n')
247
+ COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort )
248
248
else
249
249
SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*')
250
250
fi
251
251
252
252
- |
253
253
# Skip the phpunit-bridge on not-master branches when $deps is empty
254
254
if [[ ! $deps && $TRAVIS_BRANCH != master ]]; then
255
- COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n')
255
+ COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort )
256
256
fi
257
257
258
258
- |
You can’t perform that action at this time.
0 commit comments