Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-131531: Make Android build retry after network failures#133193
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
!buildbot android |
bedevere-bot commentedApr 30, 2025
🤖 New build scheduled with the buildbot fleet by@mhsmith for commit4c83a6b 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F133193%2Fmerge The command will test the builders whose names match following regular expression: The builders matched are:
|
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.
I guess time will tell whether 5 retries is enough. Otherwise, looks like a solid collection of cleanups.
feac343
intopython:mainUh oh!
There was an error while loading.Please reload this page.
Thanks@mhsmith for the PR, and@freakboy3742 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
…honGH-133193)Adds a retry strategy when downloading compilation resources for Android, plus some other cleanups.(cherry picked from commitfeac343)Co-authored-by: Malcolm Smith <smith@chaquo.com>
GH-133236 is a backport of this pull request to the3.13 branch. |
Uh oh!
There was an error while loading.Please reload this page.
This commit was cherry-picked from#132870, because the buildbots have had a lot of intermittent download failures from GitHub URLs in the last few days.
It uses curl's
--retry-all-errors
flag, because some of the failures have returned codes that indicate a permanent failure (e.g. 403), even though it's actually temporary.Other cleanups:
shutil.unpack_archive
to remove the dependency on an externaltar
command.