You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Xcode 16.4 in CI and fix non-bzlmod dependency issues (#1591)
Fixes:
```
buildkite-agent annotate --style=warning Your selected Xcode version 16.2 was not available on the machine.
--
| Bazel CI automatically picked a fallback version: 26.0.
```
Also fixes issues in non-blzmod mode. We were resolving to dependency
versions that were newer than what was defined in `MODULE.bazel`, since
workspace mode does not upgrade deps for us it was failing to build due
to zlib issues fixed in newer protobuf versions. This updates the
versions to be set to what bzlmod is upgrading our deps to so we can
more accurately set the versions while in workspace mode
Fixes:
```
WARNING: For repository 'bazel_features', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
WARNING: For repository 'bazel_skylib', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
WARNING: For repository 'build_bazel_apple_support', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
WARNING: For repository 'platforms', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
WARNING: For repository 'com_google_protobuf', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
```
0 commit comments