Oscar Bonilla

Results 42 comments of Oscar Bonilla

I was going to set it up with Azure, but I guess GitHub actions is the future. Unfortunately I don't have access yet :-(

@DavidGoldman I think @ravimandala is waiting for https://github.com/bazelbuild/bazel/issues/7083 to be resolved before adding this change as it can potentially break valid builds if people add an actual call to `$(location)`...

https://github.com/bazelbuild/bazel/issues/7083 is fixed. @ravimandala can you add the comment/example that @DavidGoldman requested?

> How does the file already exist? Bazel always starts with a fresh bundle. The problem is that `resource_bundles` is not excluding directories: ``` resource_bundles = {"FooResources": glob( ["Resources/**/*"], exclude_directories...

> In cocoapods-bazel, [this line](https://github.com/bazel-ios/cocoapods-bazel/blob/master/lib/cocoapods/bazel/target.rb#L355) explicitly set exclude_directories = 0. This is where we have dirs as input. I will check if we can set this to 1 without losing...

I suggest we rename the PR to "if resource_bundles has exclude_directories = false, clonefile fails" or something like that.

I realized the original title was misleading. I'm not proposing full Unix daemonization. Only the ability to timeout after a period of inactivity and to bail if called on a...

@buchgr sounds perfect! In my case, we have a go-written bazel-wrapper that already handles versioning, fetching, and caching of the Bazel main binary. Our plan is to add Bazel-remote to...

In our case, it would be harder to rely on launchd or systemd since we are using `bazel-remote` on-demand and automatically spawned by `bazel-wrapper`. Configuring launchd/systemd would require the user...

I tried using `ctx.expand_location()` from an aspect but got hit with https://github.com/bazelbuild/bazel/issues/7083