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# for kokoro mac workers, exact image version is store in a well-known location on disk 30KOKORO_IMAGE_VERSION="$(cat /VERSION)" 31 32BAZEL_REMOTE_CACHE_ARGS=( 33 # Enable uploading to remote cache. Requires the "roles/remotebuildexecution.actionCacheWriter" permission. 34 --remote_upload_local_results=true 35 # allow invalidating the old cache by setting to a new random key 36 --remote_default_exec_properties="grpc_cache_silo_key1=83d8e488-1ca9-40fd-929e-d37d13529c99" 37 # make sure we only get cache hits from binaries built on exact same macos image 38 --remote_default_exec_properties="grpc_cache_silo_key2=${KOKORO_IMAGE_VERSION}" 39) 40 41./tools/run_tests/start_port_server.py 42 43# only select ObjC test from the following subdirs 44# TODO(jtattermusch): start running selected tests from //test/core too. 45test_pattern="//test/cpp/end2end/... + //test/cpp/server/... + //test/cpp/client/... + //test/cpp/common/... + //test/cpp/codegen/... + //test/cpp/util/... + //test/cpp/grpclb/... + //test/cpp/test/... + //test/core/event_engine/..." 46 47# iOS tests are marked as "manual" to prevent them from running by default. To run them, we need to use "bazel query" to list them first. 48ios_tests=$(tools/bazel query "kind(ios_unit_test, tests($test_pattern))" | grep '^//') 49 50python3 tools/run_tests/python_utils/bazel_report_helper.py --report_path bazel_cpp_ios_tests 51 52bazel_cpp_ios_tests/bazel_wrapper \ 53 --bazelrc=tools/remote_build/include/test_locally_with_resultstore_results.bazelrc \ 54 test \ 55 --google_credentials="${KOKORO_GFILE_DIR}/GrpcTesting-d0eeee2db331.json" \ 56 "${BAZEL_REMOTE_CACHE_ARGS[@]}" \ 57 $BAZEL_FLAGS \ 58 -- ${ios_tests} 59