We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f00dae commit c20eedcCopy full SHA for c20eedc
1 file changed
.kokoro/system.sh
@@ -151,7 +151,7 @@ if [ -n "$PACKAGES_TO_TEST" ]; then
151
export -f run_package_test
152
export system_test_script PROJECT_ROOT KOKORO_GFILE_DIR
153
154
- echo "$PACKAGES_TO_TEST" | xargs -n 1 -P 8 -I {} bash -c 'run_package_test "{}" > ".logs/{}.log" 2>&1 || touch ".logs/{}.failed"'
+ echo "$PACKAGES_TO_TEST" | tr ' ' '\n' | awk 'NF' | xargs -P 8 -I {} bash -c 'run_package_test "{}" > ".logs/{}.log" 2>&1 || touch ".logs/{}.failed"'
155
156
for failed in .logs/*.failed; do
157
if [ -f "$failed" ]; then
0 commit comments