|
20 | 20 |
|
21 | 21 | matrix: |
22 | 22 | include: |
23 | | - -php:7.1.3 |
24 | | - -php:7.1 |
25 | | -env:deps=high |
26 | | - -php:7.1 |
| 23 | + -php:7.2 |
27 | 24 | env:deps=low |
28 | 25 | fast_finish:true |
29 | 26 |
|
@@ -171,11 +168,11 @@ install: |
171 | 168 | if [[ $skip ]]; then |
172 | 169 | echo -e "\\n\\e[1;34mIntermediate PHP version $PHP is skipped for pull requests.\\e[0m" |
173 | 170 | elif [[ $deps = high ]]; then |
174 | | - echo "$COMPONENTS" |parallel --gnu -j10% "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" |
| 171 | + echo "$COMPONENTS" |xargs -I{} "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" |
175 | 172 | elif [[ $deps = low ]]; then |
176 | | - echo "$COMPONENTS" |parallel --gnu -j10% "tfold {} 'cd {} && $COMPOSER_UP --prefer-lowest --prefer-stable && $PHPUNIT_X'" |
| 173 | + echo "$COMPONENTS" |xargs -I{} "tfold {} 'cd {} && $COMPOSER_UP --prefer-lowest --prefer-stable && $PHPUNIT_X'" |
177 | 174 | else |
178 | | - echo "$COMPONENTS" |parallel --gnu "tfold {} $PHPUNIT_X {}" |
| 175 | + echo "$COMPONENTS" |xargs -I{} "tfold {} $PHPUNIT_X {}" |
179 | 176 | tfold tty-group $PHPUNIT --group tty |
180 | 177 | if [[ $PHP = $MIN_PHP ]]; then |
181 | 178 | tfold src/Symfony/Component/Process.sigchild SYMFONY_DEPRECATIONS_HELPER=weak php-$MIN_PHP/sapi/cli/php ./phpunit --colors=always src/Symfony/Component/Process/ |
|