-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.bazelrc
More file actions
16 lines (13 loc) · 610 Bytes
/
Copy path.bazelrc
File metadata and controls
16 lines (13 loc) · 610 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SafeDI Bazel configuration.
# Use bzlmod for external dependency resolution.
common --enable_bzlmod
# Fail loudly on errors — makes CI logs readable.
common --verbose_failures
# Pin both host (exec-config) and target deployment targets so tools
# like SafeDITool stay runnable on macOS hosts older than the SDK
# used to build them. Without --host_macos_minimum_os, a build on a
# machine with Xcode 26 produces a SafeDITool binary that dyld
# refuses to load on a runner with an older macOS. Pattern matches
# swift-syntax's .bazelrc.
common --host_macos_minimum_os=11.0
common --macos_minimum_os=11.0