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 42358f1 commit f536b25Copy full SHA for f536b25
1 file changed
.kokoro/system.sh
@@ -151,6 +151,19 @@ reap_parallel_results() {
151
echo "Failed: $failed_count"
152
echo "=================================================="
153
154
+ local passed_packages=()
155
+ for pkg in "${PACKAGES_TO_TEST[@]}"; do
156
+ if [ ! -f "$LOG_DIR/$pkg.failed" ]; then
157
+ passed_packages+=("$pkg")
158
+ fi
159
+ done
160
+
161
+ if [ ${#passed_packages[@]} -gt 0 ]; then
162
+ echo ""
163
+ echo "PASSED PACKAGES:"
164
+ printf "%s\n" "${passed_packages[@]}" | sort | sed 's/^/- /'
165
166
167
if [ "$failed_count" -gt 0 ]; then
168
echo ""
169
echo "!!! DETAILED LOGS FOR FAILED PACKAGES !!!"
0 commit comments