Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 81f9806

Browse files
committed
(debug) Don't parallelize for low deps to
1 parent 1677777 commit 81f9806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ install:
172172
elif [[ $deps = high ]]; then
173173
echo "$COMPONENTS" | parallel --gnu -j10% "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'"
174174
elif [[ $deps = low ]]; then
175-
echo "$COMPONENTS" | parallel --gnu -j10% "tfold {} 'cd {} && $COMPOSER_UP --prefer-lowest --prefer-stable && $PHPUNIT_X'"
175+
echo "$COMPONENTS" | parallel --gnu -j1 -u "tfold {} 'cd {} && $COMPOSER_UP --prefer-lowest --prefer-stable && $PHPUNIT_X'"
176176
else
177177
echo "$COMPONENTS" | parallel --gnu "tfold {} $PHPUNIT_X {}"
178178
tfold tty-group $PHPUNIT --group tty

0 commit comments

Comments
 (0)