From e9564668c7a619df7bd9290ecde4a9f3d78e34d8 Mon Sep 17 00:00:00 2001 From: Googler Date: Thu, 3 Aug 2023 09:28:26 -0700 Subject: [PATCH] Automated rollback of commit 45e1b5caebf47d6ac732fc3cf7187b7fe8f62eae. *** Reason for rollback *** Performance regression, b/294105788 *** Original change description *** Implement REPO.bazel - REPO.bazel is a new file at the root of repos that can only contain a `repo()` call with a bunch of package default arguments (similar to `package()`) - A new SkyFunction, RepoFileFunction, evaluates a REPO.bazel file and returns the `PackageArgs` object containing those arguments - PackageFunction for packages in repo `@foo` now depends on RepoFileFunction for `@foo` Fixes https://github.com/bazelbuild/bazel/issues/18077 PiperOrigin-RevId: 553500673 --- third_party/bazel/src/main/protobuf/failure_details.proto | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/bazel/src/main/protobuf/failure_details.proto b/third_party/bazel/src/main/protobuf/failure_details.proto index ca793a22f2e..37c922a289e 100644 --- a/third_party/bazel/src/main/protobuf/failure_details.proto +++ b/third_party/bazel/src/main/protobuf/failure_details.proto @@ -1245,7 +1245,6 @@ message PackageLoading { BUILTINS_INJECTION_FAILURE = 29 [(metadata) = { exit_code: 1 }]; SYMLINK_CYCLE_OR_INFINITE_EXPANSION = 30 [(metadata) = { exit_code: 1 }]; OTHER_IO_EXCEPTION = 31 [(metadata) = { exit_code: 36 }]; - BAD_REPO_FILE = 32 [(metadata) = { exit_code: 1 }]; } Code code = 1;