Version 1.4.63
Cherry-pick: Disable bot check when archiving
CL: https://r8-review.googlesource.com/c/r8/+/34949
Bug: 126871526
Change-Id: I8739dcb5487c5ffc2756ff9545211d5bd04db12e
diff --git a/src/main/java/com/android/tools/r8/Version.java b/src/main/java/com/android/tools/r8/Version.java
index e2d1033..240feb3 100644
--- a/src/main/java/com/android/tools/r8/Version.java
+++ b/src/main/java/com/android/tools/r8/Version.java
@@ -11,7 +11,7 @@
// This field is accessed from release scripts using simple pattern matching.
// Therefore, changing this field could break our release scripts.
- public static final String LABEL = "1.4.62";
+ public static final String LABEL = "1.4.63";
private Version() {
}
diff --git a/tools/archive.py b/tools/archive.py
index ce04494..2ebb108 100755
--- a/tools/archive.py
+++ b/tools/archive.py
@@ -88,8 +88,9 @@
def Main():
(options, args) = ParseOptions()
- if not utils.is_bot() and not options.dry_run:
- raise Exception('You are not a bot, don\'t archive builds')
+ # TODO(126871526): Fix the is_bot check.
+ # if not utils.is_bot() and not options.dry_run:
+ # raise Exception('You are not a bot, don\'t archive builds')
# Generate an r8-ed build without dependencies.
# The '-Pno_internal' flag is important because we generate the lib based on uses in tests.