-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-enable minimal_jdk_test with a higher tolerance #20451
Conversation
Re-enable `minimal_jdk_test` with a higher tolerance.
@@ -42,9 +42,9 @@ export BAZEL_SUFFIX="_jdk_minimal" | |||
source "$(rlocation "io_bazel/src/test/shell/integration_test_setup.sh")" \ | |||
|| { echo "integration_test_setup.sh not found!" >&2; exit 1; } | |||
|
|||
# Bazel's install base is < 370MB with minimal JDK and > 370MB with an all | |||
# Bazel's install base is < 450MB with minimal JDK and > 450MB with an all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@meteorcloudy I don't know whether this part of the comment is actually accurate. Can you confirm?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also re-enable the test in presubmit.yml file? I think as long as the test pass, it's fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, you need to change line 51 to actually bump the size.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, can you rebase the branch to get the macOS presubmit enabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the size. I think this branch has the macos presubmit enabled already, why isn't it running?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see, due to bazelbuild/continuous-integration#1800, we have skipped macOS jobs for GitHub PRs. But if we import this PR as a CL, it'll be tested.
Re-enable `minimal_jdk_test` with a higher tolerance. Closes #20451. PiperOrigin-RevId: 588756736 Change-Id: Ib26da4a31f942b1f0d7a3ed976389449f7995105
Re-enable
minimal_jdk_test
with a higher tolerance.