Steeve Morin
Steeve Morin
I have an iPhone 5c that gets stuck at `Install: GeneratingApplicationMap (90%)`. The phone was fully factory reseted to eliminate possible problems. I have bisected the problem to this commit:...
When running a `bazel run //:target.apply`, `rules_k8s` will apply some objects multiple times if they happen to be walked in the graph multiple times: For instance: ```python k8s_objects( name =...
This would allows for `genrule` and friends to consume args as templates, for instance: ```python load("@bazel_skylib//rules:common_settings.bzl", "string_flag") string_flag( name = "myflag", ) genrule( name = "myrule", outs = ["value.txt"], cmd...
Hi, `rules_go` has this concept of [build-time code analysis](https://github.com/bazelbuild/rules_go/blob/master/go/nogo.rst). It is very very useful in a team context and has saved us many times. It's nicer than running it via...
This mimics the behavior of `cc_library`. When consuming `CcInfo` from a `swift_library`, if the library is in an external repo, the `quote_includes` paths are not set. In the case of...
Add a new `pbswift_files` output group in order to consume the generated `pbswift` files in macros for instance Switch from `FileNaming=FullPath` to `FileNaming=PathToUnderscores` When compiling `pbswift` files, the linker complains...
## Description Add a `kubectl` attribute to k8s_deploy, allowing to specify a custom kubectl binary. Fix #33 ## Related Issue https://github.com/adobe/rules_gitops/issues/33 ## Motivation and Context Allows for easily wrapping or...
### Description of the problem / feature request: Pass custom `kubectl` binary to `k8s_deploy` commands. ### Feature requests: what underlying problem are you trying to solve with this feature? We...
Currently the whole story around `GOPROXY`, `GONOPROXY`, `GOSUMDB` and `GONOSUMDB` involves passing those via the env when running bazel. This is inconvenient in the sense we now need wrapper around...
This is a modified version of the high speed ethernet driver made by Hardkernel. I have disabled the efuse mac loading part (it crashes), and made it compile successfully. For...