forked from buildfarm/buildfarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporate rules_{python,proto} for bazel_tools
Since bazelbuild/bazel#17545, bazel_tools apparantly requires rules_python and rules_proto to successfully parse under bazel (load lines only). We only use affected bazel_tools (src/main/protobuf) in persistentworkers. Import these repositories to reinstate downstream CI passing. Ignore rules_oss_audit setup and invoke install_deps omitted from it in a generated.bzl (move maven here as well). Relocated all WORKSPACE-scope invocations to deps/defs/generated.
- Loading branch information
Showing
4 changed files
with
47 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
buildfarm generated definitions that can be imported into other WORKSPACE files | ||
""" | ||
|
||
load("@maven//:compat.bzl", "compat_repositories") | ||
load("@oss_audit_deps//:requirements.bzl", "install_deps") | ||
|
||
def buildfarm_generated(): | ||
compat_repositories() | ||
|
||
install_deps() |