8000 Sort components on CI · symfony/symfony@5551763 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5551763

Browse files
Sort components on CI
1 parent afe2f0c commit 5551763

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ before_install:
7373
export PHPUNIT=$(readlink -f ./phpunit)
7474
export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data"
7575
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)
7777
find ~/.phpenv -name xdebug.ini -delete
7878
7979
if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then
@@ -244,15 +244,15 @@ install:
244244
SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) &&
245245
git fetch origin $SYMFONY_VERSION &&
246246
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)
248248
else
249249
SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*')
250250
fi
251251
252252
- |
253253
# Skip the phpunit-bridge on not-master branches when $deps is empty
254254
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)
256256
fi
257257
258258
- |

0 commit comments

Comments
 (0)
0