Marc Plano-Lesay

Results 137 comments of Marc Plano-Lesay

Sure - I have in my `WORKSPACE`: ``` http_archive( name = "com_envoyproxy_protoc_gen_validate", sha256 = "4c692c62e16c168049bca2b2972b0a25222870cf53e61be30b50d761e58728bd", strip_prefix = "protoc-gen-validate-{}".format("0.6.8"), urls = ["https://github.com/envoyproxy/protoc-gen-validate/archive/v{}.tar.gz".format("0.6.8")], ) load("@com_envoyproxy_protoc_gen_validate//bazel:repositories.bzl", "pgv_dependencies") pgv_dependencies() load("@com_envoyproxy_protoc_gen_validate//:dependencies.bzl", "go_third_party") load("@com_envoyproxy_protoc_gen_validate//bazel:dependency_imports.bzl", "pgv_dependency_imports") pgv_dependency_imports()...

Does that mean I need to maintain a file like e.g. [this](https://github.com/envoyproxy/protoc-gen-validate/blob/v0.6.8/example-workspace/dependencies.bzl)?

Also: > If you’re including the PGV repo directly as a bazel dependency, Is there any other, maybe simpler way to use PGV with Bazel? The only parts I'm after...

I think `var sliceEnd = i step;` should be `var sliceEnd = i + size`? But otherwise it looks like it should work indeed, from a quick glance. As a...

I just realised that storing just the name of the theme (e.g. `nord.theme`) without any path worked just fine as long as the theme is in the default folder or...

And now this fails as Bazel doesn't support sandboxing on Windows (I get similar failures when using `--spawn_strategy=standalone` on Linux - parts of it are easy to solve, some are...

Looking into the Ubuntu issue, building the same thing on an Ubuntu 20.04 VM (which seems to be what `ubuntu-latest` is at the moment on GitHub CI) works fine. From...

I'll disable Ubuntu on GitHub Actions for now, as it's covered by Cirrus CI, to unblock other PRs.

What is the current logic? Pulling the same tag, and checking whether it changed or not?

Thanks for the quick reply! I don't have any idea about the timeline for IR to become stable for Kotlin/JS. I suspect most consumers are happily using IR already -...