xref: /aosp_15_r20/external/grpc-grpc-java/buildscripts/kokoro/kokoro.sh (revision e07d83d3ffcef9ecfc9f7f475418ec639ff0e5fe)
1*e07d83d3SAndroid Build Coastguard Worker#!/bin/bash
2*e07d83d3SAndroid Build Coastguard Worker
3*e07d83d3SAndroid Build Coastguard Workerspongify_logs() {
4*e07d83d3SAndroid Build Coastguard Worker  local f
5*e07d83d3SAndroid Build Coastguard Worker  while read -r f; do
6*e07d83d3SAndroid Build Coastguard Worker    mkdir "${f%.xml}"
7*e07d83d3SAndroid Build Coastguard Worker    cp "$f" "${f%.xml}/sponge_log.xml"
8*e07d83d3SAndroid Build Coastguard Worker  done < <(find "${KOKORO_ARTIFACTS_DIR:-.}" -name 'TEST-*.xml')
9*e07d83d3SAndroid Build Coastguard Worker}
10