1#!/usr/bin/env bash 2# Copyright 2019 The gRPC Authors 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15 16set -ex 17 18# avoid slow finalization after the script has exited. 19source $(dirname $0)/../../../tools/internal_ci/helper_scripts/move_src_tree_and_respawn_itself_rc 20 21# change to grpc repo root 22cd $(dirname $0)/../../.. 23 24source tools/internal_ci/helper_scripts/prepare_build_macos_rc 25 26# make sure bazel is available 27tools/bazel version 28 29./tools/run_tests/start_port_server.py 30 31# for kokoro mac workers, exact image version is store in a well-known location on disk 32KOKORO_IMAGE_VERSION="$(cat /VERSION)" 33 34BAZEL_REMOTE_CACHE_ARGS=( 35 # Enable uploading to remote cache. Requires the "roles/remotebuildexecution.actionCacheWriter" permission. 36 --remote_upload_local_results=true 37 # allow invalidating the old cache by setting to a new random key 38 --remote_default_exec_properties="grpc_cache_silo_key1=83d8e488-1ca9-40fd-929e-d37d13529c99" 39 # make sure we only get cache hits from binaries built on exact same macos image 40 --remote_default_exec_properties="grpc_cache_silo_key2=${KOKORO_IMAGE_VERSION}" 41) 42 43python3 tools/run_tests/python_utils/bazel_report_helper.py --report_path bazel_c_cpp_tests 44 45# run all C/C++ tests 46bazel_c_cpp_tests/bazel_wrapper \ 47 --bazelrc=tools/remote_build/mac.bazelrc \ 48 test \ 49 --google_credentials="${KOKORO_GFILE_DIR}/GrpcTesting-d0eeee2db331.json" \ 50 "${BAZEL_REMOTE_CACHE_ARGS[@]}" \ 51 $BAZEL_FLAGS \ 52 -- //test/... 53