forked from tweag/credential-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
34 lines (30 loc) · 848 Bytes
/
BUILD.bazel
File metadata and controls
34 lines (30 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
load("@tweag-credential-helper//bzl:defs.bzl", "credential_helper")
credential_helper(
name = "tweag-credential-helper",
cache = "@tweag-credential-helper//cache",
cache_type_name = "NewMemCache",
helperfactory = "@tweag-credential-helper//helperfactory/fallback",
helperfactory_type_name = "FallbackHelperFactory",
pure = "on",
visibility = ["//visibility:public"],
)
# Only development and test targets below
filegroup(
name = "all_files",
srcs = [
"BUILD.bazel",
"LICENSE",
"MODULE.bazel",
"WORKSPACE",
"go.mod",
"go.sum",
"prebuilt_lockfile.json",
"tools/credential-helper",
],
visibility = ["//:__subpackages__"],
)
exports_files([
".bcr/metadata.template.json",
"prebuilt_lockfile.json",
"tools/credential-helper",
])