dkthezero
dkthezero
I try to sync but it fails: `invalid target format '//hydra\kotlin\vn\com\asao\hydra\services\templateengine:template_engine': invalid package name 'hydra\kotlin\vn\com\asao\hydra\services\templateengine': package names may contain A-Z, a-z, 0-9, or any of ' !"#$%&'()*+,-./;?[]^_`{|}~' (most 7-bit ascii...
@jamesward do you have the same example for bazel? support for bzlmod with `MODULE.bazel` is appreciated
@jamesward I have looked around all examples, but you use the rules but do not setup it up from scratch. I practice with Bzlmod, a new way to maintain the...
Another setup is: ``` ## grpc_kotlin.bzl load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") def grpc_kotlin(): release = "v1.3.0" http_archive( name = "grpc_kotlin", urls = ["https://github.com/grpc/grpc-kotlin/archive/refs/tags/%s.tar.gz" % release], ) def _grpc_kotlin_repositories(ctx): grpc_kotlin() grpc_kotlin_dependencies = module_extension( implementation...