Ted
Ted
Minimal-ish example [here](https://github.com/ted-xie/xls_regex/commit/bdf4bb7e738d4d8c5e1b7d8bad33acb2cde2f998#diff-bb82a0d97b75e2d5bf227f22b5dfcc9502e9fc15fde0aa81cab832ba96e06262R46). `interpreter_main donut.x` will hang after the loop finishes all 256 iterations (last trace print statement shows the value of `i` as 0xff). When I replace `update(result_, u8:0,...
* Adds mobile_install_targets task type * Automatically appends `--nodeploy` for mobile-install to avoid having to set up real android emulators for CI.
Use `bazel run` + aspect + flags as proxy for mobile-install command.
Currently fails with this: ``` no such target '//external:databinding_annotation_processor': target 'databinding_annotation_processor' not declared in package 'external' defined by /WORKSPACE (Tip: use `query "//external:*"` to see all the targets in that...
Explicitly enable/disable bzlmod enable_bzlmod now defaults to true at bazel HEAD, so we have to be careful about where specifically we want bzlmod enabled or disabled. PiperOrigin-RevId: 574171623 Change-Id: I7143bba51b6304e9525e2b8d4aa7acf3173eec6d
See [this BazelCI run](https://buildkite.com/bazel/rules-android/builds/1710) for commit 088f922a0e5c2579ab948e341c18ad3cbe280cba. @bazel_tools//tools/android:desugar_java8_legacy_libs is failing because it still references legacy desugarer flags, even after the default desugar tool in Bazel was switched to D8 in...
android_library and android_local_test currently call into [_add_g3itr](https://github.com/bazelbuild/rules_android/blob/4814684d5ed05b75ae5412791318e9bd4000b8e4/rules/resources.bzl#L178), which doesn't do anything (just copies input to output), but inflates the action count significantly. The g3itr action should not even be called...
Studio deployer will be the deployment solution for OSS mobile-install v3. Blocker for mobile-install open sourcing (#12).
Other language rulesets are moving to [platforms](https://bazel.build/extending/platforms) and [toolchains](https://bazel.build/extending/toolchains) for toolchain selection. In contrast, Android builds still rely on various legacy Android-specific flags and behaviors, such as --fat_apk_cpu. This issue...