Krishna Ersson
Krishna Ersson
>I am guessing this is happening with other language rules as well. Yes, I'm having the same issue with `py_image`. Is there something we're missing? How should we be passing...
For anyone interested, I adapted @philsc's patch to the latest rules_python release, [v0.24.0](https://github.com/bazelbuild/rules_python/releases/tag/0.24.0). [patch_wheels.patch](https://github.com/bazelbuild/rules_python/files/12359775/patch_wheels.patch) Which allows you to do this: ```bazel http_archive( name = "rules_python", patch_args = ["-p1"], patches =...
I wasn't able to find official documentation that covers this, but this is what I've found that works: 1. Set the `module_name` on your `objc_library` targets (or rely on the...
Make sure your user is allowed to run `docker` as non-root: https://docs.docker.com/engine/install/linux-postinstall/
For visibility, while https://github.com/bazelbuild/rules_rust/pull/2453 was meant to address this issue, I believe https://github.com/bazelbuild/rules_rust/pull/2575 also addresses it (see @cameron-martin's [comment](https://github.com/bazelbuild/rules_rust/pull/2453#issuecomment-2030365539)), so I think this can be considered closed as of [0.41.0](https://github.com/bazelbuild/rules_rust/releases/tag/0.41.0)?
Hi all. We're running into this issue as well. More broadly, this seems like a very fundamental difference between the build settings Xcode uses for transitive SPM packages and the...
I asked about this on the #apple channel of the Bazel Slack workspace, and @brentleyjones had an [excellent suggestion](https://bazelbuild.slack.com/archives/CD3QY5C2X/p1711573058014229?thread_ts=1711572929.014009&cid=CD3QY5C2X) of using transitions to apply the correct minimum OS version to...
Here's my progress update. Based on the Swift Package Manager [`SupportedPlatform`](https://docs.swift.org/package-manager/PackageDescription/PackageDescription.html#supportedplatform) spec, we need to implement the following behavior: - If a platform version is specified, then we need to...
@brentleyjones here's an updated **rules_swift** patch that swaps out the hardcoded oldest supported version with a toolchain configurator that uses your new `*_sdk_minimum_os` attributes: - [rules_swift-set-platform-version.patch](https://github.com/cgrindel/rules_swift_package_manager/files/14892225/rules_swift-set-platform-version.patch) Everything still works wonderfully...
Here are my updated patches that should apply to the latest `rules_swift` (2.1.1) and `rules_swift_package_manager` (0.39.0). We've been using them successfully. It's a pain to keep maintaining them, but it...