load rules thorugh maybe so we can simultaneous updates (#195)
* load rules thorugh maybe so we can simultaneous updates * buildify * Add keyword to |maybe| calls to pacify buildifier's new strictness.
This commit is contained in:
parent
3154dbbc41
commit
d8387f7bd0
11
WORKSPACE
11
WORKSPACE
|
@ -1,12 +1,15 @@
|
|||
workspace(name = "bazel_skylib")
|
||||
|
||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
http_archive(
|
||||
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
||||
|
||||
maybe(
|
||||
repo_rule = http_archive,
|
||||
name = "bazel_federation",
|
||||
url = "https://github.com/bazelbuild/bazel-federation/archive/130c84ec6d60f31b711400e8445a8d0d4a2b5de8.zip",
|
||||
sha256 = "9d4fdf7cc533af0b50f7dd8e58bea85df3b4454b7ae00056d7090eb98e3515cc",
|
||||
strip_prefix = "bazel-federation-130c84ec6d60f31b711400e8445a8d0d4a2b5de8",
|
||||
type = "zip",
|
||||
url = "https://github.com/bazelbuild/bazel-federation/archive/130c84ec6d60f31b711400e8445a8d0d4a2b5de8.zip",
|
||||
)
|
||||
|
||||
load("@bazel_federation//:repositories.bzl", "bazel_skylib_deps")
|
||||
|
@ -29,7 +32,8 @@ load("//:internal_setup.bzl", "bazel_skylib_internal_setup")
|
|||
|
||||
bazel_skylib_internal_setup()
|
||||
|
||||
http_archive(
|
||||
maybe(
|
||||
repo_rule = http_archive,
|
||||
name = "rules_cc",
|
||||
sha256 = "b4b2a2078bdb7b8328d843e8de07d7c13c80e6c89e86a09d6c4b424cfd1aaa19",
|
||||
strip_prefix = "rules_cc-cb2dfba6746bfa3c3705185981f3109f0ae1b893",
|
||||
|
@ -38,4 +42,3 @@ http_archive(
|
|||
"https://github.com/bazelbuild/rules_cc/archive/cb2dfba6746bfa3c3705185981f3109f0ae1b893.zip",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue