mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
This uses ccache + github caching to substantially decrease the time it takes to run XCode builds. Due to Bazel caching, these are some of our slowest tests, causing one of the biggest presubmit bottlenecks PiperOrigin-RevId: 507794241
3 lines
100 B
Bash
Executable file
3 lines
100 B
Bash
Executable file
#!/bin/sh
|
|
# This file wraps clang with ccache to enable faster runs of xcodebuild
|
|
ccache clang "$@"
|