59 lines
2.1 KiB
Bash
Executable File
59 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2023 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
|
|
set -exo pipefail
|
|
|
|
function resultstore_extract_fallback {
|
|
# In case the main script fails somehow.
|
|
cat <<EOF
|
|
IMPORTANT: For bazel invocations that uploaded to ResultStore (e.g. RBE), you
|
|
can view more detailed results that are probably easier to read than this log.
|
|
Try the links below:
|
|
EOF
|
|
# Find any "Streaming build results to" lines,
|
|
# de-duplicate,
|
|
# and print the last word from each
|
|
awk '/Streaming build results to/ {print $NF}' "$TFCI_OUTPUT_DIR/script.log" | uniq
|
|
}
|
|
|
|
# Print out any ResultStore URLs for Bazel invocations' results.
|
|
# Each failed target there will have its own representation, making failures
|
|
# easier to find and read.
|
|
function resultstore_extract {
|
|
local PYTHON_BIN XML_PATH
|
|
PYTHON_BIN=$(which python3 2>/dev/null || which python)
|
|
XML_PATH="$TFCI_OUTPUT_DIR/Bazel_Test_and_Build_Results/sponge_log.xml"
|
|
|
|
local script_path="$TFCI_GIT_DIR/ci/official/utilities/extract_resultstore_links.py"
|
|
local log_path="$TFCI_OUTPUT_DIR/script.log"
|
|
|
|
if [[ "$TFCI_GITHUB_ACTIONS" == "true" ]] && { [[ $(uname -s) == "MSYS_NT"* ]] || [[ $(uname -s) == "MINGW64_NT"* ]]; }; then
|
|
script_path=$(cygpath -w "$script_path")
|
|
log_path=$(cygpath -w "$log_path")
|
|
XML_PATH=$(cygpath -w "$XML_PATH")
|
|
fi
|
|
|
|
"$PYTHON_BIN" \
|
|
"$script_path" \
|
|
"$log_path" \
|
|
--print \
|
|
--xml-out-path "$XML_PATH"
|
|
}
|
|
|
|
if grep -q "Streaming build results to" "$TFCI_OUTPUT_DIR/script.log"; then
|
|
resultstore_extract || resultstore_extract_fallback
|
|
fi
|