dep-protobuf/ci
Jie Luo 90ad7e9788 Add Bazel9 test
#test-continuous

PiperOrigin-RevId: 908263056
2026-04-30 10:53:12 -07:00
..
bazel9.bazelrc Add Bazel9 test 2026-04-30 10:53:12 -07:00
clang_wrapper Enable ccache for XCode builds. 2023-02-07 08:52:54 -08:00
clang_wrapper++ Enable ccache for XCode builds. 2023-02-07 08:52:54 -08:00
common.bazelrc Add Bazel9 test 2026-04-30 10:53:12 -07:00
Linux.bazelrc Build with -Wundef (#17845) 2024-11-27 09:14:54 -08:00
macOS.bazelrc Upgrade zlib to BCR patch 5 and remove -Wunknown-warning-option for macOS. 2025-02-03 12:21:54 -08:00
push_auto_update.sh Fix staleness regen script 2025-11-06 11:27:39 -08:00
python_compatibility.sh Exclude proto_api_test.py from the continuous python compatibility tests by moving it out of ci/python_compatibility.sh. 2025-12-10 12:24:03 -08:00
README.md Add documentation for our new GHA infrastructure 2023-02-10 09:31:29 -08:00
Windows.bazelrc Add Bazel9 test 2026-04-30 10:53:12 -07:00

This directory contains CI-specific tooling.

Clang wrappers

CMake allows for compiler wrappers to be injected such as ccache, which intercepts compiler calls and short-circuits on cache-hits. This can be done by specifying CMAKE_C_COMPILER_LAUNCHER and CMAKE_CXX_COMPILER_LAUNCHER during CMake's configure step. Unfortunately, X-Code doesn't provide anything like this, so we use basic wrapper scripts to invoke ccache + clang.

Bazelrc files

In order to allow platform-specific .bazelrc flags during testing, we keep 3 different versions here along with a shared common.bazelrc that they all include. Our GHA infrastructure will select the appropriate file for any test and overwrite the default .bazelrc in our workspace, which is intended for development only.