mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.0 KiB
55 lines
2.0 KiB
1 year ago
|
# Copyright 2023 The gRPC Authors
|
||
|
#
|
||
|
# 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.
|
||
|
|
||
|
"""
|
||
|
Generates a suite of strict build tests, to minimize runtime.
|
||
|
"""
|
||
|
|
||
|
load("//tools/bazelify_tests:build_defs.bzl", "grpc_run_simple_command_test")
|
||
|
|
||
|
def _safe_target_name(name):
|
||
|
"""Returns a sanitized name for a target"""
|
||
|
return name.replace(":", "").replace("/", "_").replace(".", "").replace(" ", "_")
|
||
|
|
||
|
def generate_strict_tests(name = ""):
|
||
|
"""Generates a suite of strict build tests, to minimize runtime.
|
||
|
|
||
|
Args:
|
||
|
name: unused (required by buildifier)
|
||
|
"""
|
||
|
strict_warning_jobs = []
|
||
|
|
||
|
for source in [
|
||
|
":all //src/core/... //src/compiler/... //examples/... -//examples/android/binder/...",
|
||
|
"//test/... -//test/core/... -//test/cpp/...",
|
||
|
"//test/core/end2end/...",
|
||
|
"//test/core/... -//test/core/end2end/...",
|
||
|
"//test/cpp/... -//test/cpp/end2end/...",
|
||
|
"//test/cpp/end2end/xds/...",
|
||
|
"//test/cpp/end2end/... -//test/cpp/end2end/xds/...",
|
||
|
]:
|
||
|
test_name = "bazel_build_with_strict_warnings_linux_" + _safe_target_name(source)
|
||
|
strict_warning_jobs.append(":" + test_name)
|
||
|
grpc_run_simple_command_test(
|
||
|
name = test_name,
|
||
|
size = "enormous",
|
||
|
args = ["tools/bazelify_tests/test/bazel_build_with_strict_warnings_linux.sh " + source],
|
||
|
docker_image_version = "tools/dockerfile/test/bazel.current_version",
|
||
|
)
|
||
|
|
||
|
native.test_suite(
|
||
|
name = "bazel_build_with_strict_warnings_linux",
|
||
|
tests = strict_warning_jobs,
|
||
|
)
|