Results 64 comments of Kai Zhang

Cool. Does `ios_ui_test` also require `provisioning_profile` to run on a real device? I assume that's the case, but we don't have UI tests, so I can't verify it. If needed...

We also encounter this problem. We currently workaround this by adding following config to project view. ``` sync_flags: --fat_apk_cpu=arm64-v8a ```

> @Arsenal591 I had this issue and it was because of this error during sync: > > ![image](https://user-images.githubusercontent.com/1559204/140792365-72e53638-7986-4ae0-a781-956cc5847669.png) We got a simliar issue when import an Android bazel project. The...

[pyrsistent](https://github.com/tobgu/pyrsistent) is a full-featured python immutable data structure library. It has a persistent vector type implemented in C. It's funny that pyrsistent lacks a C versioned map type(Its immutable map...

Hi, do we have an approximate expected time for pre-alpha to be officially merged into master? Currently we encountered some problems when building Android app with bazel. Like https://github.com/bazelbuild/bazel/issues/13295 https://github.com/bazelbuild/bazel/issues/11497...

We have a similar use case; we want to install a package in a local directory without `editable.` We have several Python packages in a mono repo. Sometimes we need...

@charliermarsh Yes. We figured that out. We have already switched to uv on our main branch. Massive speed up. Thanks for this awesome tool. (And ruff too!)

According to the admin [doc](https://bazelbuild.github.io/bazel-buildfarm/docs/admin/), currently, admin only works with clusters deployed in AWS. Unfortunately, we cannot deploy our cluster in AWS. So we cannot use admin. We deploy one...

That would be great. Also gracefully shut down with signal has an advantage that it's easier to do a rolling update for workers. We don't need to coordinate with the...

We tried a quick and dirty implementation internally. Basically, call `prepareWorkerForGracefulShutdown` in `onShutdown` and wait for the queue to be empty. We can submit the code as a reference if...