There was an error while loading. Please reload this page.
1 parent c3bdf09 commit 13ac53cCopy full SHA for 13ac53c
1 file changed
.kokoro/system.sh
@@ -275,11 +275,13 @@ for path in `find 'packages' \
275
# Join states with a comma
276
state_str=$(IFS=, ; echo "${states[*]}")
277
278
+ commit_hash="${KOKORO_GITHUB_PULL_REQUEST_COMMIT:-HEAD}"
279
+
280
if [[ ${#states[@]} -gt 0 ]]; then
- echo "[checking] ${package_name}:${KOKORO_GITHUB_PULL_REQUEST_COMMIT:-HEAD}, state: ${state_str}"
281
+ printf "TEST %-20s %-40s %s\n" "[${state_str}]" "${package_name}" "${commit_hash}"
282
PACKAGES_TO_TEST+=("$package_name")
283
else
- echo "[checking] ${package_name}:${KOKORO_GITHUB_PULL_REQUEST_COMMIT:-HEAD}, state: skipped (no changes)"
284
+ printf "SKIP %-20s %-40s %s\n" "[no_changes]" "${package_name}" "${commit_hash}"
285
fi
286
done
287
0 commit comments