[Fix][CI] Increase timeout of MacOS Bazel C/C++ tests (again) (#41978)

Extending Kokoro timeout by 15 more minutes:

- `grpc/core/master/macos/grpc_bazel_c_cpp_opt`
- `grpc/core/master/macos/grpc_bazel_c_cpp_dbg`

This was done recently in #41942, and jobs are still teetering on the edge of timing out.

Closes #41978

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/41978 from sergiitk:fix/ci/bazel-c-cpp/timeout 413ebc2729d48d9507da8c50347a4100afdfbebd
PiperOrigin-RevId: 892710210
2 files changed
tree: 343ab1bdca956311dc59097bda0f5ce67107a2d7
  1. .bazelci/
  2. .bcr/
  3. .gemini/
  4. .github/
  5. bazel/
  6. cmake/
  7. doc/
  8. etc/
  9. examples/
  10. include/
  11. py_xds_protos/
  12. spm-core-include/
  13. spm-cpp-include/
  14. src/
  15. summerofcode/
  16. templates/
  17. test/
  18. third_party/
  19. tools/
  20. .bazelignore
  21. .bazelrc
  22. .bazelversion
  23. .clang-format
  24. .clang-tidy
  25. .dockerignore
  26. .editorconfig
  27. .git-blame-ignore-revs
  28. .gitallowed
  29. .gitattributes
  30. .gitignore
  31. .gitmodules
  32. .istanbul.yml
  33. .pylintrc
  34. .pylintrc-examples
  35. .pylintrc-tests
  36. .rspec
  37. .yapfignore
  38. .yardopts
  39. AUTHORS
  40. BoringSSL-Package.swift
  41. BUILD
  42. build_autogenerated.yaml
  43. build_config.rb
  44. build_handwritten.yaml
  45. BUILDING.md
  46. CMakeLists.txt
  47. CODE-OF-CONDUCT.md
  48. composer.json
  49. CONCEPTS.md
  50. config.m4
  51. config.w32
  52. CONTRIBUTING.md
  53. CONTRIBUTING_STEPS.md
  54. Gemfile
  55. GEMINI.md
  56. GOVERNANCE.md
  57. gRPC-C++.podspec
  58. gRPC-Core.podspec
  59. gRPC-ProtoRPC.podspec
  60. gRPC-RxLibrary.podspec
  61. grpc-style-config.toml
  62. grpc.bzl
  63. grpc.def
  64. grpc.gemspec
  65. gRPC.podspec
  66. LICENSE
  67. MAINTAINERS.md
  68. Makefile
  69. MANIFEST.md
  70. MODULE.bazel
  71. NOTICE.txt
  72. Package.swift
  73. package.xml
  74. pyproject.toml
  75. PYTHON-MANIFEST.in
  76. Rakefile
  77. README.md
  78. requirements.bazel.lock
  79. requirements.bazel.txt
  80. requirements.txt
  81. ruff.toml
  82. SECURITY.md
  83. setup.cfg
  84. setup.py
  85. TROUBLESHOOTING.md
  86. WORKSPACE
README.md

gRPC – An RPC library and framework

gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems.

Join the chat at https://gitter.im/grpc/grpc

To start using gRPC

To maximize usability, gRPC supports the standard method for adding dependencies to a user‘s chosen language (if there is one). In most languages, the gRPC runtime comes as a package available in a user’s language package manager.

For instructions on how to use the language-specific gRPC runtime for a project, please refer to these documents

  • C++: follow the instructions under the src/cpp directory
  • C#/.NET: NuGet packages Grpc.Net.Client, Grpc.AspNetCore.Server
  • Dart: pub package grpc
  • Go: go get google.golang.org/grpc
  • Java: Use JARs from Maven Central Repository
  • Kotlin: Use JARs from Maven Central Repository
  • Node: npm install @grpc/grpc-js
  • Objective-C: Add gRPC-ProtoRPC dependency to podspec
  • PHP: pecl install grpc
  • Python: pip install grpcio
  • Ruby: gem install grpc
  • WebJS: follow the grpc-web instructions

Per-language quickstart guides and tutorials can be found in the documentation section on the grpc.io website. Code examples are available in the examples directory.

Precompiled bleeding-edge package builds of gRPC master branch's HEAD are uploaded daily to packages.grpc.io.

To start developing gRPC

Contributions are welcome!

Please read How to contribute which will guide you through the entire workflow of how to build the source code, how to run the tests, and how to contribute changes to the gRPC codebase. The “How to contribute” document also contains info on how the contribution process works and contains best practices for creating contributions.

Troubleshooting

Sometimes things go wrong. Please check out the Troubleshooting guide if you are experiencing issues with gRPC.

Performance

See the Performance dashboard for performance numbers of master branch daily builds.

Concepts

See gRPC Concepts

About This Repository

This repository contains source code for gRPC libraries implemented in multiple languages written on top of a shared C++ core library src/core.

Libraries in different languages may be in various states of development. We are seeking contributions for all of these libraries:

LanguageSource
Shared C++ [core library]src/core
C++src/cpp
Rubysrc/ruby
Pythonsrc/python
PHPsrc/php
C# (core library based)src/csharp
Objective-Csrc/objective-c
LanguageSource repo
Javagrpc-java
Kotlingrpc-kotlin
Gogrpc-go
NodeJSgrpc-node
WebJSgrpc-web
Dartgrpc-dart
.NET (pure C# impl.)grpc-dotnet
Swiftgrpc-swift