rules_manifest

所属分类:collect
开发工具:Starlark
文件大小:0KB
下载次数:0
上传日期:2020-08-29 12:23:13
上 传 者sh-1993
说明:  用于为无服务器函数和docker映像构建CI CD清单的Bazel规则,
(Bazel rules for building CI CD manifests for serverless functions and docker images,)

文件列表:
.bazelrc (573, 2020-08-29)
BUILD.bazel (662, 2020-08-29)
LICENSE (11357, 2020-08-29)
WORKSPACE (1618, 2020-08-29)
containermanifester/ (0, 2020-08-29)
containermanifester/BUILD.bazel (825, 2020-08-29)
containermanifester/main.go (717, 2020-08-29)
containermanifester/main_test.go (1503, 2020-08-29)
containermanifester/test1.digest (4, 2020-08-29)
containermanifester/test2.digest (4, 2020-08-29)
defs.bzl (1430, 2020-08-29)
go.mod (100, 2020-08-29)
go.sum (181, 2020-08-29)
lambdamanifester/ (0, 2020-08-29)
lambdamanifester/BUILD.bazel (371, 2020-08-29)
lambdamanifester/main.go (1591, 2020-08-29)
manifest.bzl (1973, 2020-08-29)
vendor.sh (330, 2020-08-29)
vendor/ (0, 2020-08-29)
vendor/github.com/ (0, 2020-08-29)
vendor/github.com/bazelbuild/ (0, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/ (0, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/AUTHORS (494, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/CONTRIBUTORS (972, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/LICENSE.txt (11358, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/ (0, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/tools/ (0, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/tools/bazel/ (0, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/tools/bazel/BUILD.bazel (584, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/tools/bazel/bazel.go (1242, 2020-08-29)
vendor/github.com/bazelbuild/rules_go/go/tools/bazel/runfiles.go (12255, 2020-08-29)
vendor/modules.txt (87, 2020-08-29)
... ...

# rules_manifest Bazel rules for building CI/CD manifests for serverless functions and docker images ## Setup To use rules from this repo, add the following to your `WORKSPACE` file: ```python load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "com_kindlyops_rules_manifest", urls = ["https://github.com/kindlyops/rules_manifest/archive/v0.2.1.tar.gz"], strip_prefix = "rules_manifest-0.2.1", sha256 = "476f374a5b125032ffdeca8541302fc87fb37207bba4792c4f4baa1e19ee5222", ) load("@com_kindlyops_rules_manifest//:defs.bzl", "manifest_deps") manifest_deps() ``` ## Use To generate a lambda manifest, invoke the rules like this: ```python load("@com_kindlyops_rules_manifest//:manifest.bzl", "lambda_manifest") lambda_manifest( name = "manifest", srcs = [ "//lambdas/demo:lambda_deploy", "//lambdas/demo2:lambda_deploy", ], ) ```

近期下载者

相关文件


收藏者