#!/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 </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